/* ===== Admin Login — JivanSangini ===== */

.admin-login-wrapper {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #7E0E17 0%, #4a0810 45%, #2b0509 100%);
    padding: 20px;
}

/* Decorative floating icons */
.login-decor {
    position: absolute;
    color: rgba(233, 30, 99, 0.15);
    font-size: 120px;
    pointer-events: none;
    z-index: 0;
}

.decor-heart-1 {
    top: -40px;
    left: -30px;
    transform: rotate(-15deg);
}

.decor-heart-2 {
    bottom: -50px;
    right: -20px;
    font-size: 160px;
    color: rgba(233, 30, 99, 0.1);
    transform: rotate(20deg);
}

.decor-ring {
    top: 20%;
    right: 8%;
    font-size: 60px;
    color: rgba(255, 215, 0, 0.15);
    transform: rotate(-10deg);
}

/* Login box container */
.login-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
}

.login-logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-logo-badge {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e91e63, #7E0E17);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
}

.login-logo-badge i {
    color: #fff;
    font-size: 26px;
}

.login-logo a {
    color: #fff !important;
    font-size: 26px;
    text-decoration: none;
    display: block;
}

.login-logo a:hover {
    color: #ffd1dc !important;
}

.admin-tag {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    letter-spacing: 3px;
    margin-top: 4px;
    font-weight: 600;
}

/* Card */
.login-box .card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.login-card-body {
    padding: 35px 30px;
    background: #fff;
}

.login-box-msg {
    color: #7E0E17;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px;
}

.login-box-msg i {
    color: #e91e63;
    margin-right: 6px;
}

/* Inputs */
.login-card-body .input-group .form-control {
    border-right: none;
    border-color: #e8c4c8;
    height: 45px;
}

.login-card-body .input-group .form-control:focus {
    border-color: #e91e63;
    box-shadow: none;
}

.login-card-body .input-group-text {
    background: #fff;
    border-left: none;
    border-color: #e8c4c8;
    color: #e91e63;
}

.login-card-body .input-group .form-control:focus+.input-group-append .input-group-text {
    border-color: #e91e63;
}

/* Remember me checkbox */
.icheck-primary label {
    color: #555;
    font-size: 13px;
}

/* Sign in button */
.admin-login-btn {
    background: linear-gradient(135deg, #e91e63, #7E0E17);
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    height: 45px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(233, 30, 99, 0.35);
    color: #fff;
}

/* Forgot password link */
.forgot-link {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
}

.forgot-link i {
    color: #e91e63;
    margin-right: 5px;
}

.forgot-link a {
    color: #7E0E17;
    font-weight: 500;
}

.forgot-link a:hover {
    color: #e91e63;
}

/* Footer note under card */
.login-footer-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-top: 18px;
}

.login-footer-note i {
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 480px) {
    .login-decor {
        display: none;
    }

    .login-card-body {
        padding: 28px 20px;
    }
}