body.login {
    background: linear-gradient(135deg, #3494E6, #EC6EAD);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    font-family: 'Open Sans', sans-serif;
}

.login-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/img/login-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.logo {
    margin-bottom: 30px;
}

.logo-img {
    max-width: 200px;
    max-height: 80px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.company-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-weight: 600;
}

.login-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.login-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.form-title {
    margin-bottom: 25px;
    color: #2C3E50;
    font-weight: 600;
}

.form-control {
    height: 45px;
    border-radius: 4px;
    box-shadow: none;
    border: 1px solid #e3e3e3;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #3494E6;
    box-shadow: 0 0 8px rgba(52, 148, 230, 0.2);
}

.input-group-addon {
    background-color: #f7f7f7;
    border-color: #e3e3e3;
    color: #777;
}

.btn-primary {
    background-color: #3494E6;
    border-color: #3494E6;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-top: 15px;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #2980B9;
    border-color: #2980B9;
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f7f7f7;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
}

.custom-checkbox:hover input ~ .checkmark {
    background-color: #f0f0f0;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #3494E6;
    border-color: #3494E6;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.forgot-password-container {
    margin-top: 20px;
}

.forgot-password-link {
    color: #3494E6;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.forgot-password-link:hover {
    color: #2980B9;
    text-decoration: underline;
}

.additional-actions {
    margin-top: 20px;
}

.additional-actions .btn {
    margin-bottom: 10px;
}

.btn-default {
    background-color: #f7f7f7;
    border-color: #e3e3e3;
    color: #555;
}

.btn-default:hover {
    background-color: #e8e8e8;
}

.btn-danger {
    background-color: #E74C3C;
    border-color: #E74C3C;
}

.btn-danger:hover {
    background-color: #C0392B;
    border-color: #C0392B;
}

.copyright-container {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 20px;
    z-index: 10;
}

.copyright {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 13px;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.alert {
    border-radius: 4px;
    padding: 15px;
}

.alert-danger {
    background-color: #FADBD8;
    border-color: #E74C3C;
    color: #C0392B;
}

/* Animations */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .login-card {
        padding: 20px 15px;
    }

    .logo-img {
        max-width: 150px;
    }
}