@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Clash+Display:wght@400;500;600;700;800;900&display=swap');

/* Enhanced Login Page Styles */
.sign-up-form {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* Enhanced Background with Multiple Layers */
.sign-up-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

/* Bubble Animation Background */
.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: bubbleFloat 15s linear infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.bubble:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 15%;
    animation-delay: 2s;
    animation-duration: 25s;
}

.bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 10%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 25%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.bubble:nth-child(5) {
    width: 90px;
    height: 90px;
    top: 30%;
    right: 10%;
    animation-delay: 8s;
    animation-duration: 24s;
}

.bubble:nth-child(6) {
    width: 70px;
    height: 70px;
    top: 80%;
    right: 20%;
    animation-delay: 10s;
    animation-duration: 19s;
}

.bubble:nth-child(7) {
    width: 110px;
    height: 110px;
    top: 50%;
    right: 5%;
    animation-delay: 12s;
    animation-duration: 21s;
}

.bubble:nth-child(8) {
    width: 50px;
    height: 50px;
    top: 15%;
    right: 30%;
    animation-delay: 14s;
    animation-duration: 16s;
}

@keyframes bubbleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.auth-container {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

/* Enhanced Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
    color: white;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 600px;
}

.logo-container {
    margin-bottom: 30px;
    position: relative;
}

.logo-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: logoShine 3s linear infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes logoShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-icon i {
    font-size: 42px;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    animation: titleReveal 1.2s ease-out;
    background: linear-gradient(45deg, #ffffff, #f0f0f0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-family: 'Clash Display', 'Outfit', sans-serif;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    animation: titleUnderline 2s ease-out 1s both;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes titleUnderline {
    from { width: 0; }
    to { width: 100px; }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.4;
    animation: slideInUp 1s ease-out 0.3s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out 0.5s both;
    font-weight: 400;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    animation: slideInUp 1s ease-out 0.7s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    padding: 20px 30px;
    border-radius: 60px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-item::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.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg) scale(1.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3));
}

.feature-icon i {
    font-size: 22px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-item span {
    font-weight: 500;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Enhanced Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    animation: enhancedFloat 8s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.2));
}

.shape-2 {
    width: 140px;
    height: 140px;
    top: 55%;
    left: 3%;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(102, 126, 234, 0.2));
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 75%;
    left: 15%;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.3), rgba(240, 147, 251, 0.2));
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 25%;
    right: 12%;
    animation-delay: 1s;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.2));
}

.shape-5 {
    width: 90px;
    height: 90px;
    top: 65%;
    right: 8%;
    animation-delay: 3s;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(102, 126, 234, 0.2));
}

@keyframes enhancedFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-15px) rotate(90deg) scale(1.1); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-25px) rotate(180deg) scale(1.2); 
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-15px) rotate(270deg) scale(1.1); 
        opacity: 1;
    }
}

/* Enhanced Auth Forms */
.auth-forms {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;    
    backdrop-filter: blur(30px);
    position: relative;    
}

.forms-container {
    width: 100%;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: formSlideIn 1s ease-out;
    position: relative;
    overflow: hidden;
}

.forms-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes formSlideIn {
    from {
        opacity: 0;
        transform: translateX(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-family: 'Clash Display', 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form-title::before {
    content: '';
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: iconPulse 2s ease-in-out infinite;
}

.form-title::after {
    content: '✨';
    font-size: 2rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.form-subtitle {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Enhanced Form Styles */
.auth-form {
    margin-bottom: 35px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 20px 25px;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
    background: rgba(248, 250, 252, 0.8);
    transition: all 0.4s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.1),
        0 10px 30px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.input-wrapper textarea {
    height: 120px;
    resize: vertical;
    padding-top: 20px;
}

/* Special handling for textarea icon */
.input-wrapper textarea ~ .input-icon {
    top: 25px;
    transform: none;
}

.input-wrapper textarea:focus ~ .input-icon {
    transform: scale(1.2);
}

/* Enhanced Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    color: #4a5568;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #cbd5e0;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(248, 250, 252, 0.8);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    transform: scale(1.1);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.forgot-link {
    color: #667eea;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(102, 126, 234, 0.1);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.forgot-link:hover {
    color: #764ba2;
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

/* Enhanced Submit Button */
.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.4),
        0 0 0 1px rgba(102, 126, 234, 0.2);
}

.submit-btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* Enhanced Form Toggle */
.form-toggle {
    text-align: center;
    margin: 35px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.toggle-text {
    font-size: 16px;
    color: #4a5568;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.toggle-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(102, 126, 234, 0.1);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.toggle-link:hover {
    color: #764ba2;
    background: rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
}

/* Enhanced Admin Login Link */
.admin-login-link {
    text-align: center;
    margin-top: 25px;
}

.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #718096;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 25px;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 30px;
    transition: all 0.3s ease;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(10px);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.admin-link:hover {
    color: #4a5568;
    background: rgba(237, 242, 247, 0.9);
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Enhanced Loading State */
.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.submit-btn.loading span {
    opacity: 0;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid transparent;
    border-top: 3px solid white;
    border-radius: 50%;
    animation: enhancedSpin 1s linear infinite;
}

@keyframes enhancedSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .auth-container {
        flex-direction: column;
    }
    
    .hero-section {
        padding: 30px 20px;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .forms-container {
        padding: 50px 40px;
        margin: 20px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .forms-container {
        padding: 40px 30px;
        margin: 15px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .forms-container {
        padding: 30px 20px;
        margin: 10px;
        border-radius: 25px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .logo-icon {
        width: 80px;
        height: 80px;
    }
    
    .logo-icon i {
        font-size: 36px;
    }
}

/* Enhanced Alert Styles */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    padding: 20px 25px;
    font-weight: 500;
    animation: alertSlideIn 0.5s ease-out;
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.alert-success {
    background: rgba(34, 197, 94, 0.95);
    color: white;
    border-left: 4px solid #22c55e;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.95);
    color: white;
    border-left: 4px solid #ef4444;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.95);
    color: white;
    border-left: 4px solid #f59e0b;
}

.alert-info {
    background: rgba(59, 130, 246, 0.95);
    color: white;
    border-left: 4px solid #3b82f6;
}

/* Enhanced Scrollbar */
.forms-container::-webkit-scrollbar {
    width: 10px;
}

.forms-container::-webkit-scrollbar-track {
    background: rgba(241, 241, 241, 0.5);
    border-radius: 10px;
}

.forms-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.forms-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2, #f093fb);
}

/* Enhanced Focus Effects */
.input-wrapper:focus-within {
    transform: scale(1.02);
}

/* Enhanced Hover Effects */
.feature-item:hover .feature-icon {
    transform: rotate(360deg) scale(1.3);
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Enhanced Button States */
.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Enhanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Form Display Logic */
.signin-none {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.signin-block {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.show-signin .signin-none {
    display: none;
}

.show-signin .signin-block {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Admin Login Container */
.admin-login-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Admin Login Card */
.admin-login-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    backdrop-filter: blur(20px);
    animation: cardSlideIn 0.8s ease-out;
    max-width: 500px;
    width: 90%;
    margin: 0;
}

/* Remove Bootstrap grid centering - use absolute positioning instead */
.admin-login-container .container,
.admin-login-container .row,
.admin-login-container .col-md-6 {
    display: block;
    width: auto;
    margin: 0;
    padding: 0;
}
