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 a {
    text-decoration: none;
}

.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: 520px;
    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-body {
    margin-top: 20px;
}

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

.phone-help-text {
    color: #777;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

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

.terms-checkbox {
    margin-top: 20px;
}

.terms-text {
    font-size: 14px;
}

.terms-text a {
    color: #3494E6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.terms-text a:hover {
    color: #2980B9;
    text-decoration: underline;
}

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

.btn {
    font-weight: 600;
    padding: 10px 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);
}

.btn-success {
    background-color: #2ECC71;
    border-color: #2ECC71;
}

.btn-success:hover, .btn-success:focus {
    background-color: #27AE60;
    border-color: #27AE60;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

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

.btn-danger:hover, .btn-danger:focus {
    background-color: #C0392B;
    border-color: #C0392B;
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
}

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

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

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

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

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

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

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

/* Additional animations */
@keyframes checkAnim {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.animate-check {
    animation: checkAnim 0.3s ease;
}

/* Field validation styles */
.formError {
    z-index: 990;
}

.formError .formErrorContent {
    background: #E74C3C;
    border: 2px solid #C0392B;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
}

.formError .formErrorArrow div {
    background: #E74C3C;
    border-left: 2px solid #C0392B;
    border-right: 2px solid #C0392B;
}

/* Validation highlight */
.validationEngineContainer input.valid {
    border-color: #2ECC71 !important;
}

.validationEngineContainer input.error {
    border-color: #E74C3C !important;
}