/* Auth pages (Login & Register) specific styles */

body.login-page {
    background: #f3f4f6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.login-container {
    position: relative;
    z-index: 1;
    max-width: 600px; /* Extracted inline style */
    width: 100%;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.lexia-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.platform-name {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.platform-tagline {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .input-field {
    padding-left: 2.5rem;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
}

.btn-primary-gradient:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    transform: translateY(-2px);
}

.test-account-box {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 3px dotted #06b6d4;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 6px rgba(6, 182, 212, 0.1);
}

.text-center-sm {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.link-styled {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

/* Register specific extracted styles */
.register-icon {
    color: #22c55e;
    margin-bottom: 1rem;
}

.register-btn {
    width: 100%;
    margin-bottom: 1rem;
}

.info-section {
    margin-top: 1.5rem;
}

.info-flex {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.info-icon {
    font-size: 1.5rem;
}

.info-title {
    margin-bottom: 0.5rem;
}

.info-text {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
}
