/* Authentication Page Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.auth-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    opacity: 0.1;
    filter: blur(40px);
}

.auth-container::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--accent-secondary), var(--accent-primary));
    opacity: 0.1;
    filter: blur(60px);
}

/* Additional decorative circles */
.auth-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circle-1 {
    top: 15%;
    left: 15%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--accent-primary), transparent);
    opacity: 0.07;
    animation: float 8s ease-in-out infinite alternate;
}

.circle-2 {
    top: 70%;
    left: 25%;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--accent-secondary), transparent);
    opacity: 0.05;
    animation: float 12s ease-in-out infinite alternate-reverse;
}

.circle-3 {
    top: 30%;
    right: 20%;
    width: 150px;
    height: 150px;
    background: linear-gradient(225deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0.06;
    animation: float 10s ease-in-out infinite alternate;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(20px, 20px) rotate(10deg);
    }
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background-color: var(--bg-primary);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 40px;
    position: relative;
    z-index: 1;
    animation: slideUp 0.6s var(--transition-ease);
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.auth-header {
    text-align: center;
    margin-bottom: 36px;
}

.auth-header h1 {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.form-group input:focus + label {
    color: var(--accent-primary);
}

.form-group input {
    transition: all 0.3s var(--transition-ease);
}

.form-group input:focus {
    transform: translateY(-2px);
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 28px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
}

.auth-divider span {
    padding: 0 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.request-access {
    background-color: var(--bg-secondary);
    padding: 28px;
    border-radius: var(--card-radius);
    margin-top: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s var(--transition-ease), box-shadow 0.3s var(--transition-ease);
}

.request-access:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.request-access h3 {
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--text-primary);
    position: relative;
    padding-left: 24px;
}

.request-access h3::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-primary);
}

.request-access p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    margin-top: 6px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.025em;
    transition: all 0.3s var(--transition-ease);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.btn-logout {
    background-color: var(--danger-color);
    color: white;
}

.btn-logout:hover {
    background-color: #dc2626;
    box-shadow: 0 8px 15px rgba(239, 68, 68, 0.2);
}

/* Position theme toggle in top right corner */
.auth-container .theme-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
} 