﻿body {
    background: url(../images/login.jpg) no-repeat center center fixed;
    background-size: cover;
    backdrop-filter: blur(10px);
    font-family: 'Poppins Regular';
}

    /* Overlay for subtle dark effect */
    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

/* Login Card Styling */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.login-card {
    background-color: #020617;
    color: #FED7AA;
    border-radius: 10px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

    .login-card h3 {
        color: #FED7AA;
        text-align: center;
        margin-bottom: 20px;
    }

    .login-card input {
        border: 1px solid #64748B;
        border-radius: 5px;
        padding: 10px;
        color: #020617;
    }

        .login-card input::placeholder {
            color: #64748B;
        }

.btn-login {
    background-color: #EA580C;
    color: #FFFFFF;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
}

    .btn-login:hover {
        background-color: #FED7AA;
        color: #EA580C;
    }

.login-footer {
    text-align: center;
    margin-top: 15px;
    color: #64748B;
}

    .login-footer a {
        color: #EA580C;
        text-decoration: none;
    }

        .login-footer a:hover {
            text-decoration: underline;
        }
