﻿body {
    font-family: 'Inter', sans-serif;
    height: 100vh;
    margin: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('/assets/dashboard/assets/images/bg/loginbg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.login-box {
    background: black;
    box-shadow: 0 0 27px rgb(246 236 86 / 59%);
    padding: 45px 40px;
    width: 380px;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-box img {
    width: 100%;
    height: 40px;
}

.login-box h2 {
    color: #f8ee57;
    font-weight: 700;
    margin-bottom: 25px;
}

.form-control {
    background-color: #1e1e1e;
    border: 1px solid #333;
    color: #fff;
    border-radius: 0;
    padding: 12px;
}

    .form-control:focus {
        border-color: #ff6600;
        box-shadow: none;
    }

.btn-login {
    background-color: #f6ec56;
    border: none;
    color: black;
    font-weight: 600;
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

    .btn-login:hover {
        background-color: #f3ea54;
        transform: translateY(-2px);
    }

.footer-text {
    margin-top: 20px;
    font-size: 13px;
    color: #aaa;
    font-weight: bold;
}

    .footer-text a {
        color: #ff6600;
        text-decoration: none;
    }

        .footer-text a:hover {
            text-decoration: underline;
        }

/* responsive */
@media (max-width: 480px) {
    .login-box {
        width: 90%;
        padding: 30px 25px;
    }
}
