body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: black;
    padding: 20px 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    max-height: 200px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 20px 0 0; 
    padding: 0;
}

nav ul li {
    margin: 0 15px; 
}

nav ul li a {
    color: #f4f4f9;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Form Wrapper */
.form-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Form Container */
.form-container {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 500px;
    max-width: 450px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

/* Header */
h1 {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 15px;
}

/* Labels */
label {
    font-weight: 600;
    margin-top: 12px;
    display: block;
    text-align: center;
}

/* Inputs, Select, Textarea */
input, select, textarea {
    width: 90%;
    padding: 12px;
    margin-top: 6px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease-in-out;
    background: #fafafa;
    box-sizing: border-box; 
}

input:focus, select:focus, textarea:focus {
    border-color: #6c63ff;
    background: white;
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.2);
}

/* Fix select width issue */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Textarea */
textarea {
    resize: vertical;
    min-height: 120px;
}

/* Button */
button {
    width: 100%;
    background: linear-gradient(135deg, #6c63ff, #5047ff);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 15px;
}

button:hover {
    background: linear-gradient(135deg, #5047ff, #3a32cc);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(4, 0, 71, 0.2);
}

/* Confirmation Message */
#confirmationMessage {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
    display: none;
}

/* Footer */
footer {
    background: #6c63ff;
    padding: 15px;
    text-align: center;
    color: white;
    width: 100%;
    margin-top: auto;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}



/* Adjust wrapper to allow side-by-side layout */
.info-and-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px; /* Space between text box and form */
    max-width: 900px;
    width: 100%;
}

/* Session Info Box */
.session-info {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 500px;
    max-width: 450px;
    text-align: left;
    animation: fadeIn 0.5s ease-in-out;
}

.session-info h2 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}

.session-info p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.session-info ul {
    padding-left: 20px;
}

.session-info strong {
    color: red; 
}

/* Make it responsive */
@media (max-width: 960px) {
    .info-and-form {
        flex-direction: column;
        align-items: center;
    }

    .session-info,
    .form-container {
        width: 100%;
        max-width: 500px;
    }
}