 /*-- Styling for register/login container and buttons ---*/

 .auth-container {
    max-width: 500px;
    margin: 40px auto; /* Add some margin */
    padding: 20px;
    background-color: #fff; /* Optional: background for the form area */
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
    text-align: center;
}
.auth-container h1 {
     margin-bottom: 20px;
     color: #333;
}
 .form-group {
    margin-bottom: 15px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
}
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding in width */
    font-family: 'Poppins', sans-serif; /* Ensure font consistency */
}
 .btn-submit { /* Use a more specific class */
    background-color: rgb(221, 60, 42); /* Match header color */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
    font-weight: 500;
}
.btn-submit:hover {
    background-color: rgb(190, 40, 25); /* Darker shade */
}
 .error-message {
    color: #d9534f;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: left;
}
.switch-link { /* Use a more specific class */
    margin-top: 20px;
    font-size: 14px;
}
.switch-link a {
    color: rgb(221, 60, 42); /* Match header color */
    text-decoration: none;
    font-weight: 500;
}
.switch-link a:hover {
    text-decoration: underline;
}