/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f5;
    color: #333;
    padding: 40px 20px;
}

/* Container for the Registration Form */
.register-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding-top: 80px;
}

/* Form Styles */
.register-form {
    max-width: 450px;
    width: 100%;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Input Fields */
input {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    transition: border-color 0.3s;
    font-size: 14px;
}

input:focus {
    border-color: #007ACC;
    outline: none;
}

/* Date of Birth Input */
.dob-input {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    appearance: none;
    color: #333;
}

/* Placeholder Color */
input::placeholder {
    color: #777;
}

/* Label Styles */
label {
    display: block;
    text-align: left;
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

/* Button Styles */
button {
    width: 100%;
    padding: 12px;
    background-color: #007ACC;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #005A8C;
}

/* Error and Success Messages */
.error {
    color: #FF0000;
    margin-top: 10px;
}

.success {
    color: #008000;
    margin-top: 10px;
}

/* Password Strength Indicator */
#password-strength {
    margin-top: 10px;
    font-weight: bold;
}

/* Password Requirements Card */
.password-requirements {
    max-width: 250px;
    width: 100%;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.password-requirements h3 {
    margin-bottom: 10px;
    color: #007ACC;
    font-size: 16px;
}

.password-requirements ul {
    list-style-type: disc;
    padding-left: 20px;
}

.password-requirements li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Confirm Button Style */
.confirm-button {
    padding: 10px 20px;
    background-color: #007ACC;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.confirm-button:hover {
    background-color: #005A8C;
}

/* Login Prompt and Button Styles */
.login-prompt {
    margin-top: 20px;
    text-align: center;
}

.login-button {
    padding: 8px 15px;
    background-color: #007ACC;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #005A8C;
}

/* Responsive Design */
@media (max-width: 600px) {
    .register-container {
        flex-direction: column;
        align-items: center;
    }

    .register-form {
        max-width: 100%;
        padding: 20px;
    }

    .password-requirements {
        max-width: 100%;
        margin-top: 20px;
    }

    input {
        padding: 10px;
        font-size: 13px;
    }

    button {
        font-size: 14px;
    }

    .dob-input {
        font-size: 13px;
        padding: 10px;
    }

    label {
        font-size: 14px;
        margin-bottom: 5px;
    }
}
