/* Container */
.container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    animation: fadeIn 0.5s ease;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.header p {
    font-size: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Content */
.content {
    padding: 40px;
}

/* Auth Forms */
.auth-forms, .storage-panel, .admin-panel {
    display: none;
}

.auth-forms.active, .storage-panel.active, .admin-panel.active {
    display: block;
}

/* Toggle Form Link */
.toggle-form {
    text-align: center;
    margin-top: 24px;
    color: #6b7280;
    font-size: 14px;
}

.toggle-form a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.toggle-form a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.admin-link {
    text-align: center;
    margin-top: 16px;
}

.admin-link a {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.admin-link a:hover {
    text-decoration: underline;
}
}