/* login.html */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* 1. Add your background image path here */
    background-image: linear-gradient(rgba(240, 247, 255, 0.8), rgba(240, 247, 255, 0.8)), url('./IMAGE/background.png');
    
    /* 2. Make sure the image covers the whole screen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* 3. Your existing layout code */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0; /* Ensures no scrollbars appear */
    color: #1e3a5f;
}

.login-container {
    width: 100%;
    max-width: 420px;
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 30px;
    /* Deep blue prominent shadow */
    box-shadow: 0 20px 50px rgba(33, 150, 243, 0.2);
}

.tagline {
    font-size: 1.1rem;
    margin-bottom: 35px;
    font-weight: 600;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.input-field {
    width: 100%;
    padding: 16px 25px;
    margin-bottom: 20px;
    border-radius: 50px;
    border: 1px solid #d0e3ff;
    font-size: 1rem;
    outline: none;
    background-color: #e3f2fd; /* Light blue shade inside inputs */
    color: #1e3a5f;
    transition: 0.3s ease;
}

.input-field:focus {
    border-color: #2196F3;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(33, 150, 243, 0.1);
}

.login-btn {
    width: 100%;
    padding: 16px;
    background-color: #2196F3; /* Primary Blue */
    color: white;
    border-radius: 50px;
    border: none;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
    margin-bottom: 15px;
    transition: 0.3s;
}

.login-btn:hover {
    background-color: #1976D2;
    transform: translateY(-2px);
}

.forgot-link {
    color: #1e3a5f;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 25px;
    opacity: 0.7;
}

.divider-line {
    height: 1px;
    background-color: #d0e3ff;
    margin: 10px 0 25px 0;
}

.signup-text a {
    color: #2196F3;
    text-decoration: none;
    font-weight: bold;
}

.login-as {
    font-size: 0.85rem;
    color: #7ba6d5;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.login-as::before, .login-as::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #d0e3ff;
}