body {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
        url("../Images/Login/background.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}
.btn-primary {
    background-color: #bdeb42;
    border: none;
    padding: 10px;
    font-weight: 600;
}
.btn-primary:hover {
    background-color: #f27a21;
}
.login-img {
    background: #efe7d7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-control:focus {
    border-color: #ff8e3c;
    box-shadow: 0 0 0 0.25rem rgba(255, 142, 60, 0.25);
}
.brand-text {
    color: #2e2e2e;
    font-weight: 700;
}