/* Admin Login Specific Styles */

body {
    background: linear-gradient(135deg, #fef7ff 0%, #f8eef8 50%, #ffd6ee 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.login-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

/* Blob Animations */
.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(80px);
    opacity: 0.6;
    animation: blob 7s infinite;
}

.blob-1 {
    top: -10%;
    left: -10%;
    background-color: #ffd6ee;
}

.blob-2 {
    top: 20%;
    right: -10%;
    background-color: #eedcff;
    animation-delay: 2s;
}

.blob-3 {
    bottom: -20%;
    left: 20%;
    background-color: #c8eaff;
    animation-delay: 4s;
}

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

/* Login Card */
.login-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 450px;
    background-color: var(--surface);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 16px 40px rgba(224, 64, 160, 0.15);
    transition: transform 0.3s ease-out;
}

.login-card:hover {
    transform: translateY(-5px);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    padding-left: 16px;
}

.password-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    margin-bottom: 8px;
}

.password-header label {
    margin-bottom: 0;
    padding-left: 0;
}

.forgot-password {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--tertiary);
}

.forgot-password:hover {
    color: var(--primary);
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.input-wrapper input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border-radius: var(--border-radius-pill);
    background-color: #fbf2fb;
    border: 2px solid transparent;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.input-wrapper input::placeholder {
    color: #bfa3c4;
}

.input-wrapper input:focus {
    border-color: var(--primary);
    background-color: var(--surface);
}

.btn-submit {
    width: 100%;
    margin-top: 16px;
    padding: 16px;
    font-size: 1.125rem;
    gap: 8px;
}

.login-footer-note {
    margin-top: 32px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Footer Adjustments */
.login-footer {
    margin-top: auto;
    background-color: #ece2ec;
    border-radius: 24px 24px 0 0;
    padding: 40px 24px 20px;
    position: relative;
    z-index: 10;
}

@media (max-width: 480px) {
    .login-card {
        padding: 32px 24px;
    }
}
