/* General Reset and Font */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* Use a clean, modern font */
    font-family: 'Poppins', sans-serif;
    /* Full viewport height */
    min-height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    /* Modern gradient background */
    background: linear-gradient(135deg, #f0f4f8, #c4c4c4);
}

/* --- Login Card Container --- */
.login-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px; /* Rounded corners */
    /* Soft, floating shadow for depth */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    width: 100%;
    max-width: 400px; /* Constrain the width */
    text-align: center;
    transition: transform 0.3s ease;
}

.login-container:hover {
    transform: translateY(-5px); /* Subtle lift effect on hover */
}

/* --- Header Text --- */
.login-form h2 {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.login-form p {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.9em;
}

/* --- Input Fields --- */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: #555;
    font-size: 0.9em;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    color: #333;
    /* Subtle transition for focus effect */
    transition: border-color 0.3s, box-shadow 0.3s; 
}

.input-group input:focus {
    border-color: #007bff; /* Highlight border on focus */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    outline: none;
}

/* --- Login Button --- */
.login-button {
    width: 100%;
    padding: 12px 0;
    background-color: #007bff; /* Primary brand color */
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    /* Smooth transition for hover effect */
    transition: background-color 0.3s ease, transform 0.1s; 
}

.login-button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

.login-button:active {
    transform: scale(0.99); /* Slight press effect */
}

/* --- Footer Links --- */
.footer-links {
    margin-top: 25px;
}

.footer-links a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/*  */