/* Universal Settings */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* body {
    background-color: #fce8e6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
} */

/* Form Container Box */
.form-container {
    background-color: white;
    width: 100%;
    max-width: 450px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-top: 8px solid #cc1100; /* Dark red top line */
}

.form-container h2 {
    color: #cc1100;
    text-align: center;
    font-size: 24px;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Grouping labels and inputs */
.input-group {
    margin-bottom: 1px;
}

.input-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    font-weight: 600;
}

.input-group input, 
.input-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

/* Border changing on click */
.input-group input:focus, 
.input-group select:focus {
    border-color: #cc1100;
    box-shadow: 0 0 5px rgba(204, 17, 0, 0.2);
}

/* Flexbox row for Age and Gender side by side */
.row {
    display: flex;
    gap: 15px;
}

.row .input-group {
    flex: 1;
}

/* Submit Button Styling */
.submit-btn {
    width: 100%;
    background-color: #cc1100;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #990000; /* Darker red on hover */
}
.scrollable-content{
    position: absolute;
    top: 60px;
    bottom: 50px;
    left: 0;
    width: 100%;
    padding: 20%;
    overflow-y: auto;
    background-color: #ffffff;
}