/* Reset and Base Styles for Auth Pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #3b4cf2;
    --primary-purple: #7b68ee;
    --dark-blue: #1a1d47;
    --light-blue: #f0f4ff;
    --text-dark: #1a1d47;
    --text-gray: #64748b;
    --white: #ffffff;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Hide all homepage elements */
.header,
.hero,
.hero-container,
.hero-content,
.hero-illustration,
.main-content,
.footer,
.floating-card,
.bitcoin-symbol,
.eagle-container {
    display: none !important;
}

/* Authentication Container */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.auth-header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

/* Form Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-group input {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 76, 242, 0.1);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(59, 76, 242, 0.3);
}

/* Message Styles */
.error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.success-message {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Footer */
.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    margin: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.auth-footer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
}

/* Responsive Design */
@media (max-width: 640px) {
    .auth-container {
        padding: 1rem;
    }
    
    .auth-card {
        padding: 2rem;
        max-width: 100%;
    }
    
    .auth-logo {
        width: 60px;
        height: 60px;
    }
    
    .auth-header h1 {
        font-size: 1.5rem;
    }
}

/* Verification Specific Styles */
.verification-checklist {
    margin: 1.5rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    background: var(--light-blue);
}

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

.status.verified {
    color: #16a34a;
    font-weight: 600;
}

.status.pending {
    color: #f59e0b;
    font-weight: 600;
}

.upload-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    text-align: center;
}

.upload-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.upload-section p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.upload-section input[type="file"] {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100%;
    max-width: 300px;
}

.verification-note {
    background: var(--light-blue);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.verification-note p {
    margin: 0.5rem 0;
    color: var(--text-gray);
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    display: inline-block;
    margin: 1rem 0;
    width: 100%;
    max-width: 200px;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.lang-current:hover {
    border-color: #3b82f6;
    background: #f8faff;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.1);
}

.lang-current:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.lang-flag {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.lang-name {
    font-weight: 600;
    flex: 1;
    text-align: left;
}

.lang-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: #6b7280;
    flex-shrink: 0;
}

.language-selector.active .lang-arrow {
    transform: rotate(180deg);
    color: #3b82f6;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    overflow: hidden;
}

.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
}

.lang-item:last-child {
    border-bottom: none;
}

.lang-item:hover {
    background: #f9fafb;
    color: #1f2937;
}

.lang-item.active {
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 600;
}

.lang-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #3b82f6;
}

.lang-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.lang-native {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.2;
}

.lang-english {
    font-size: 0.75rem;
    color: #6b7280;
    opacity: 0.8;
    line-height: 1.2;
}

.lang-check {
    color: #10b981;
    opacity: 0;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.lang-item.active .lang-check {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .language-selector {
        max-width: 100%;
    }
    
    .lang-current {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .lang-item {
        padding: 1.25rem;
    }
} 