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: 15px;
    color: #2C3E50;
    font-weight: 600;
}

.reset-desc {
    margin-bottom: 25px;
    color: #777;
}

.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 {
    font-weight: 600;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3494E6;
    border-color: #3494E6;
}

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

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

.btn-default:hover {
    background-color: #e8e8e8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-actions {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.alert-container {
    margin-top: 20px;
}

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

.alert-success {
    background-color: #D4EFDF;
    border-color: #2ECC71;
    color: #27AE60;
}

.alert-danger {
    background-color: #FADBD8;
    border-color: #E74C3C;
    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);
}

/* 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;
    }
}

/* Custom loader styles */
.global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(3px);
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(52, 148, 230, 0.2);
    border-radius: 50%;
    border-top: 4px solid #3494E6;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Form validation styles */
.is-valid {
    border-color: #2ECC71 !important;
}

.is-invalid {
    border-color: #E74C3C !important;
}