﻿body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.5), rgba(0, 198, 255, 0.5)), url('/img/loginBG.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 0;
    }

.login-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 420px;
    width: 100%;
    padding: 40px 30px;
}

.login-header {
    text-align: center;
    margin-bottom: 25px;
}

    .login-header h3 {
        font-weight: 600;
        color: #333;
    }

    .login-header p {
        color: #666;
        font-size: 14px;
    }

.form-control {
    border-radius: 10px;
    height: 45px;
}

.btn-login {
    background: linear-gradient(90deg, #007bff, #00c6ff);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    width: 100%;
    height: 45px;
    transition: 0.3s;
}

    .btn-login:hover {
        background: linear-gradient(90deg, #0056b3, #0099cc);
    }

.footer-text {
    text-align: center;
    font-size: 13px;
    color: #777;
    margin-top: 15px;
}

.fade-in {
    animation: fadeIn 0.7s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.login-card {
    position: relative;
    z-index: 1;
}
