.auth-wrapper-admin {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-section-center {
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-form-container {
    width: 100%;
}

.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-body {
    padding: 3rem;
}

.form-header {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1.5rem;
}

.form-logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #0d683d;
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.2);
}

.form-header h4 {
    color: #0d683d;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.form-header p {
    font-size: 0.95rem;
    margin: 0;
    color: #666;
}

.btn-primary {
    background: linear-gradient(45deg, #0d683d, #77a308);
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 85, 48, 0.3);
}

.form-control {
    border-radius: 10px;
    border: 1.5px solid #e0e0e0;
    padding: 14px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-control:focus {
    border-color: #0d683d;
    box-shadow: 0 0 0 0.2rem rgba(44, 85, 48, 0.15);
    background: white;
}

.form-control:hover {
    border-color: #0d683d;
    background: white;
}

.spinnerl {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s ease-in-out infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-primary {
    color: #0d683d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.link-primary:hover {
    color: #77a308;
    text-decoration: underline;
}

.toggle-password {
    color: #666;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #0d683d;
}

@media (max-width: 768px) {
    .auth-wrapper-admin {
        padding: 1rem;
    }

    .card-body {
        padding: 2rem;
    }

    .form-logo {
        width: 80px;
        height: 80px;
    }

    .form-header h4 {
        font-size: 1.5rem;
    }
}
