/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9fb;
    color: rgb(104, 106, 158);
}

/* Animation for fade-in effect */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Login Container */
.login-container {
    max-width: 30rem;
    margin: 2rem auto;
    margin-top: 10rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.login-container h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

/* Styling Input Fields */
.login-container input[type="email"],
.login-container input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Input focus effect */
.login-container input[type="email"]:focus,
.login-container input[type="password"]:focus {
    outline: none;
    border-color: #7733f4;
    box-shadow: 0 0 10px rgba(119, 51, 244, 0.6);
}

/* Button Styling */
.login-container button {
    width: 100%;
    padding: 1rem;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
}

/* Button hover effect */
.login-container button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Additional styles for Auth links */
.auth-link {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.auth-link a {
    color: #2b6cb0;
    text-decoration: none;
    transition: color 0.3s;
}

.auth-link a:hover {
    color: #003f4d;
}

/* Ensure the announcement banner sticks to the bottom of the nav */
nav {
    grid-template-rows: auto 0px; /* Adjust 40px to match the height of your announcement banner */
}

