﻿body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}



.login-container {
    max-width: 400px;
    width: 100%;
    padding: 30px;
    background-color: #ffffffae;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

    .login-container h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #000000;
        text-align: center;
    }

.form-group {
    margin-bottom: 30px;
    color: #000000;
}

    .form-group label {
        font-weight: 500;
        color: #000000;
        display: block;
        margin-bottom: 5px;
    }

.form-control {
    border: 1px solid #4fa355;
    background-color: #b8edc080;
    padding: 15px;
    height: 45px;
    font-size: 14px;
    border-radius: 5px;
}

    .form-control:focus {
        box-shadow: none;
        border-color: rgba(0, 0, 0, 0.1);
        background-color: white;
    }

.btn-primary {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 100%;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

.forgot-pass {
    font-size: 14px;
    color: Green;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 10px;
}

    .forgot-pass:hover {
        color: Green;
    }

/* ----- Splash Screen with Zoom‑In ----- */
/* ----- Splash Screen with Zoom-In then Zoom-Out ----- */
#splashScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease; /* faster fade out */
}

    #splashScreen.hidden {
        opacity: 0;
        pointer-events: none;
    }

    #splashScreen img {
        max-width: 70%;
        max-height: 70%;
        width: auto;
        height: auto;
        animation: zoomInOut 3s ease forwards;
    }

@keyframes zoomInOut {
    0% {
        transform: scale(0.3);
        opacity: 0.5;
    }

    80% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.6);
        opacity: 0.9;
    }
}

/* Hide login form until splash is gone */
.login-wrapper {
    opacity: 0;
    transition: opacity 1s ease;
}

    .login-wrapper.visible {
        opacity: 1;
    }
