body {
    background:
        linear-gradient(135deg, rgba(3, 12, 48, 0.22), rgba(12, 26, 83, 0.12)),
        url('/Content/images/login-digital-bg.png') center center / cover fixed no-repeat !important;
    min-height: 100vh;
}

.recovery-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.recovery-wrapper {
    display: flex;
    width: 100%;
    max-width: 1080px;
    max-height: calc(100vh - 40px);
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.recovery-brand-panel {
    flex: 0 0 60%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95)), url('/Content/images/c3bg1.jpg');
    background-size: cover;
    background-position: center;
}

.recovery-brand-content {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.recovery-brand-logo {
    width: 72px;
    height: 72px;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.recovery-brand-logo img {
    max-width: 100%;
    max-height: 100%;
}

.recovery-brand-content h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 3px;
}

.recovery-brand-content p {
    margin: 7px 0 0;
    font-size: 12px;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.recovery-carousel {
    position: relative;
    z-index: 1;
    padding: 15px;
}

.recovery-carousel-container {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.recovery-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.recovery-carousel-slide {
    min-width: 100%;
    position: relative;
}

.recovery-carousel-slide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.recovery-carousel-slide span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 14px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

.recovery-form-panel {
    flex: 0 0 40%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 30px 36px;
    overflow-y: auto;
    background: #fff;
}

.recovery-form-panel > .row {
    width: 100%;
    margin: 0;
}

.recovery-form-panel > .row > .col-md-12 {
    width: 100%;
    padding: 0;
}

.recovery-form-panel .box,
.recovery-form-panel .box-primary,
.recovery-form-panel .box-info,
.recovery-form-panel .box-success,
.recovery-form-panel .box.box-solid,
.recovery-form-panel .box.box-solid.box-info,
.recovery-form-panel .box.box-solid.box-success {
    margin: 0;
    border: 0 !important;
    outline: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.recovery-form-panel .box-widget {
    display: none;
}

.recovery-form-panel .register-box-body {
    padding: 0;
}

.recovery-form-panel .login-box-msg {
    padding: 0;
    margin: 0 0 22px;
    color: #333;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

.recovery-form-panel .form-group.has-feedback {
    margin-bottom: 16px;
}

.recovery-form-panel .form-control {
    height: 44px;
    padding: 10px 14px 10px 42px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    box-shadow: none;
    font-size: 14px;
}

.recovery-form-panel .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.recovery-form-panel .form-control-feedback {
    top: 0;
    right: auto;
    left: 0;
    width: 42px;
    height: 44px;
    line-height: 44px;
    color: #aaa;
}

.recovery-form-panel .btn-primary {
    height: 44px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    font-weight: 600;
}

.recovery-form-panel .btn-primary:hover,
.recovery-form-panel .btn-primary:focus {
    background: linear-gradient(135deg, #5b70d5, #6a4292);
}

.recovery-form-panel .social-auth-links {
    margin: 16px 0 0;
}

.recovery-form-panel .social-auth-links a {
    float: none !important;
    display: block;
    width: 100%;
    margin: 0 0 10px !important;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #667eea;
    background: #fff;
    text-decoration: none;
}

.recovery-form-panel .social-auth-links a:hover {
    border-color: #667eea;
    background: #f7f8ff;
}

@media (max-width: 768px) {
    .recovery-wrapper {
        max-height: none;
        flex-direction: column;
    }

    .recovery-brand-panel,
    .recovery-form-panel {
        flex: 0 0 auto;
        width: 100%;
    }

    .recovery-brand-panel {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .recovery-container {
        padding: 10px;
    }

    .recovery-form-panel {
        padding: 24px 22px;
    }
}
