body {
    font-family: sans-serif;
    background: #97c8db;
    padding: 20px;
    
}

h2 {
    text-align: center;
}

#phone-auth-container {
    max-width: 700px;
    margin: auto;
    text-align: center;
    padding: 20px; /* Added padding */
    background: #fff; /* Added background */
    border-radius: 10px; /* Added border-radius */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Added subtle shadow */
}

input[type="tel"],
input[type="text"],
input[type="date"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px; /* Increased padding */
    margin-bottom: 10px; /* Added margin */
    border: 1px solid #ccc; /* Added border */
    border-radius: 4px; /* Added border-radius */
    box-sizing: border-box; /* Include padding and border in element's total width */
}

button, .button-link { /* Style for both button and the new link */
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; /* Remove underline for links */
    display: inline-block; /* Make link behave like button */
    text-align: center;
    margin: 0 5px; /* Add some space between buttons */
}

#send-otp-button {
    background: #0073aa;
}

#send-otp-button:disabled {
    background: #cccccc; /* Grey out disabled button */
    cursor: not-allowed;
}

#login-button {
    background: #555; /* Different color for login */
}

#login-button:disabled {
    background: #cccccc; /* Grey out disabled button */
    cursor: not-allowed;
}


#otp-section {
    display: none;
    margin-top: 20px; /* Add some space */
    padding: 15px;
    background: #e9e9e9; /* Light background for OTP section */
    border-radius: 8px;
}

#vhrssForm {
    display: none;
    max-width: 700px;
    margin: 20px auto; /* Adjusted margin */
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Added subtle shadow */
}

#vhrssForm label {
    font-weight: bold; /* Make labels bold */
    display: block; /* Make labels block elements */
    margin-bottom: 5px; /* Add space below labels */
}


#custom-alert {
    display: none;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 15px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    border-radius: 5px;
    width: 300px;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

table {
     border-collapse: collapse;
     margin-bottom: 10px; /* Add space below table */
     width: auto; /* Adjust table width */
     margin: 10px 0; /* Add margin to table */
}

table td {
    padding: 5px;
}


#dob-error {
    color: red;
    display: none;
     margin-top: -10px; /* Adjust spacing */
     margin-bottom: 10px;
     font-size: 0.9em;
}

/* Style for links inside labels */
label a {
    color: #0073aa;
    text-decoration: underline;
}

label a:hover {
    text-decoration: none;
}