/* Simple styling for the registration form */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

form {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center; /* Ensures all form elements are centrally aligned */
}

form h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px; /* Make it stand out */
    font-weight: bold;
}

label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    text-align: left; /* Keep labels left-aligned */
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#messages {
    margin-top: 20px;
    font-size: 14px;
    color: #d9534f; /* Default color for error messages */
    text-align: center;
}

/* Styling for Forgot Password Link */
.forgot-password,
.register-user-classs {
    display: inline-block; /* Place divs side-by-side */
    text-align: right; /* Align links within their divs */
    margin-right: 10px; /* Add space between the two divs */
}

.forgot-password a,
.register-user-classs a {
    font-size: 14px; /* Ensure font size is consistent */
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

.forgot-password a:hover,
.register-user-classs a:hover {
    text-decoration: underline;
    color: #0056b3;
}


.register-user-class a {
    font-size: 14px !important;
    text-decoration: none !important;
    color: #007bff !important;
}

