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: 450px;
    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);
}

.control-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

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

.password-field-wrapper {
    position: relative;
    width: 100%;
}

.password-validation {
    display: none;
    position: absolute;
    right: 40px;
    top: 13px;
    font-size: 12px;
    color: #E74C3C;
    background-color: #FADBD8;
    padding: 2px 8px;
    border-radius: 3px;
    z-index: 5;
}

.password-strength-meter {
    margin: 20px 0;
    padding: 10px;
    background: #f7f7f7;
    border-radius: 5px;
}

.strength-label {
    font-size: 12px;
    margin-bottom: 5px;
    color: #777;
}

.strength-meter {
    height: 6px;
    background-color: #e3e3e3;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.strength-meter-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease, background-color 0.5s ease;
    width: 0%;
}

.strength-meter-fill[data-strength="0"] {
    width: 0%;
}

.strength-meter-fill[data-strength="1"] {
    width: 25%;
    background-color: #E74C3C;
}

.strength-meter-fill[data-strength="2"] {
    width: 50%;
    background-color: #F39C12;
}

.strength-meter-fill[data-strength="3"] {
    width: 75%;
    background-color: #3498DB;
}

.strength-meter-fill[data-strength="4"] {
    width: 100%;
    background-color: #2ECC71;
}

.strength-text {
    text-align: right;
    font-size: 12px;
    margin-top: 5px;
    color: #777;
}

.btn {
    font-weight: 600;
    padding: 10px 16px;
    transition: all 0.3s ease;
}

.btn-success {
    background-color: #2ECC71;
    border-color: #2ECC71;
    margin-top: 10px;
}

.btn-success:hover, .btn-success:focus {
    background-color: #27AE60;
    border-color: #27AE60;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 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);
}

.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);
}

.form-actions {
    margin-top: 25px;
}

.alert {
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-info {
    background-color: #D6EAF8;
    border-color: #3498DB;
    color: #2980B9;
}

.alert-warning {
    background-color: #FCF3CF;
    border-color: #F1C40F;
    color: #B7950B;
}

.alert-link {
    font-weight: 600;
    text-decoration: underline;
}

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

.mt-10 {
    margin-top: 10px;
}

.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;
    }
}