﻿body {
    background: linear-gradient(135deg, #007BFF, #00BFA6);
    height: 100vh;
   /* margin: 0;*/
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;



    padding: 0;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    margin: 80px 0 0 0; /* Enough space for fixed navbar */
    overflow: hidden; /* Disable scrolling on desktop */
    display: flex;
}

.login-container {
    width: 100%;
    max-width: 420px;
    background: #ffffffee;
    padding: 35px 40px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.9s ease-in-out;
    margin: 0 auto; /* center horizontally */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
    color: #007BFF;
}

.input-group {
    margin-bottom: 20px;
}

    .input-group label {
        font-weight: bold;
        color: #444;
        margin-bottom: 8px; /* slightly more space between label and textbox */
        display: block;
    }

    .input-group input {
        width: 100%;
        padding: 8px 12px; /* smaller height */
        border-radius: 10px;
        border: 1px solid #ccc;
        outline: none;
        font-size: 1rem;
        transition: 0.2s;
        height: 15px
    }

        .input-group input:focus {
            border-color: #007BFF;
            box-shadow: 0 0 6px #007bff75;
        }

.login-btn {
    width: 100%;
    padding: 12px;
    background: #007BFF;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
}

    .login-btn:hover {
        background: #005fcc;
    }

.extra-links {
    margin-top: 15px;
    text-align: center;
}

    .extra-links a {
        color: #007BFF;
        text-decoration: none;
        font-weight: bold;
    }

        .extra-links a:hover {
            text-decoration: underline;
        }
