/* ===== WITHDRAW METHODS VE AUTH/WITHDRAW BÖLÜMÜ STİLLERİ ===== */

.withdraw-methods {
    border-radius: var(--mobile-border-radius);
    box-shadow: var(--mobile-shadow);
    padding: 30px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

.withdraw-methods h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.withdraw-method-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.withdraw-method-item:hover {
    border-color: var(--primary-color);
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.withdraw-method-item.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f2ff 100%);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.withdraw-method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.withdraw-method-icon i {
    color: white;
    font-size: 1.5rem;
}

.withdraw-method-info {
    flex: 1;
}

.withdraw-method-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.withdraw-method-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.withdraw-method-fee {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.withdraw-method-check {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.withdraw-method-item.selected .withdraw-method-check {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.withdraw-method-item.selected .withdraw-method-check::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Withdraw Form Stilleri */
.withdraw-form {
    background: white;
    border-radius: var(--mobile-border-radius);
    box-shadow: var(--mobile-shadow);
    padding: 30px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

.withdraw-form h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: var(--mobile-font-size-base);
    background: white;
    transition: all 0.3s ease;
    color: var(--accent-color);
    min-height: 44px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.withdraw-amount-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.amount-breakdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.amount-breakdown:last-child {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.amount-label {
    color: #6c757d;
}

.amount-value {
    color: var(--accent-color);
    font-weight: 600;
}

.withdraw-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 50px;
    margin-top: 20px;
}

.withdraw-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.withdraw-button:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Success/Error Mesajları */
.withdraw-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-weight: 500;
}

.withdraw-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.withdraw-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.withdraw-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Loading Spinner */
.withdraw-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .withdraw-methods,
    .withdraw-form {
        padding: 20px;
        margin: 15px 0;
    }
    
    .withdraw-method-item {
        padding: 15px;
        margin-bottom: 12px;
    }
    
    .withdraw-method-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .withdraw-method-icon i {
        font-size: 1.2rem;
    }
    
    .withdraw-method-name {
        font-size: 1rem;
    }
    
    .withdraw-method-description {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 16px; /* iOS zoom önleme */
    }
    
    .withdraw-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .withdraw-methods,
    .withdraw-form {
        padding: 15px;
        margin: 10px 0;
    }
    
    .withdraw-methods h3,
    .withdraw-form h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .withdraw-method-item {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .withdraw-method-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }
    
    .withdraw-method-icon i {
        font-size: 1rem;
    }
    
    .withdraw-method-name {
        font-size: 0.95rem;
    }
    
    .withdraw-method-description {
        font-size: 0.8rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .withdraw-button {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}

/* Touch Optimizasyonları */
@media (hover: none) and (pointer: coarse) {
    .withdraw-method-item {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .withdraw-method-item:active {
        transform: scale(0.98);
        background: #e8f2ff;
    }
    
    .withdraw-button:active {
        transform: scale(0.98);
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        font-size: 16px; /* iOS zoom önleme */
    }
}


/* Auth Pages Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    position: relative;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.auth-box {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.auth-logo i {
    font-size: 2rem;
    color: #667eea;
}

.auth-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.auth-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #666;
    font-size: 0.95rem;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.alert-error {
    background: #fee;
    color: #c53030;
    border: 1px solid #fed7d7;
}

.alert-success {
    background: #f0fff4;
    color: #38a169;
    border: 1px solid #c6f6d5;
}

.alert i {
    font-size: 1rem;
}

/* Form Styles */
.auth-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group label i {
    color: #667eea;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input.error {
    border-color: #e53e3e;
    background: #fff5f5;
}

/* Password Input */
.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #667eea;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
}

.forgot-password {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Button Styles */
.btn-full {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Divider */
.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider span {
    background: white;
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-google:hover {
    border-color: #ea4335;
    color: #ea4335;
}

.btn-facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.auth-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Auth Info Cards */
.auth-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-left: 3rem;
    max-width: 300px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: white;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: #ffd700;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10000;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-message {
    font-size: 0.9rem;
    color: #333;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: #f1f5f9;
    color: #333;
}

.notification-success {
    border-left: 4px solid #38a169;
}

.notification-error {
    border-left: 4px solid #e53e3e;
}

.notification-info {
    border-left: 4px solid #3182ce;
}

/* Profile Page Styles */
.auth-card {
    /*background: white;*/
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.profile-info {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #e9ecef;
}

.profile-info .form-label {
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.profile-info .form-control-plaintext {
    color: #212529;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
    margin: 0;
}

.profile-actions {
    margin-top: 2rem;
}

.profile-actions .btn {
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.profile-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Para Yatırma ve Çekme Sayfaları */
.current-balance .alert {
    border-radius: 15px;
    border: none;
    font-size: 1.1rem;
}

/* Koyu Tema Stilleri */
.dark-container {
    min-height: 100vh;
    /*background: #212529;*/
    padding: 80px 20px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.dark-card {
    background: #343a40;
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dark-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.dark-header h2 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dark-header p {
    color: #adb5bd;
    font-size: 1rem;
    margin: 0;
}

.balance-display {
    background: #495057;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    border: 2px solid #6c757d;
    margin-bottom: 1.5rem;
}

.balance-display i {
    color: #ffc107;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.balance-amount {
    color: #ffc107;
    font-size: 1.5rem;
    font-weight: 700;
}

.info-card {
    background: #495057;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #6c757d;
    color: white;
}

.info-card h6 {
    color: #ffc107;
    margin-bottom: 1rem;
}

.info-card ul {
    color: #adb5bd;
}

.info-card li {
    margin-bottom: 0.5rem;
}

.method-card {
    background: #495057;
    border: 1px solid #6c757d;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.method-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.method-header {
    background: linear-gradient(135deg, #00265d 0%, #1a1a2e 100%);
    color: white;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.method-header:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.method-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.method-header i {
    transition: transform 0.3s ease;
}

.method-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.method-content {
    padding: 1.5rem;
    background: #495057;
}

.bank-info, .crypto-info, .papara-info {
    background: #343a40;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #6c757d;
    margin-bottom: 1rem;
}

.bank-detail, .crypto-detail, .papara-detail {
    margin-bottom: 1rem;
}

.bank-detail label, .crypto-detail label, .papara-detail label {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.bank-detail p, .crypto-detail p, .papara-detail p {
    margin: 0;
    font-weight: 500;
    color: white;
}

.iban-text, .wallet-address, .papara-number {
    font-family: 'Courier New', monospace;
    background: #212529;
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #6c757d;
    font-size: 0.9rem;
    word-break: break-all;
    color: #ffc107;
}

.copy-btn {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.deposit-form, .withdraw-form {
    background: #343a40;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #6c757d;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid #6c757d;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
    background: #212529;
    color: white;
}

.form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
    background: #212529;
}

/* Button margin */
.deposit-form .btn,
.withdraw-form .btn {
    margin-top: 1rem;
}

.form-text {
    font-size: 0.8rem;
    color: #adb5bd;
}

.info-section {
    margin-top: 1.5rem;
}

.info-section .alert {
    border-radius: 15px;
    border: none;
}

.info-section ul {
    padding-left: 1.2rem;
}

.info-section li {
    margin-bottom: 0.5rem;
}

.recent-transactions {
    margin-top: 1.5rem;
}

.recent-transactions h5 {
    color: #ffc107;
    margin-bottom: 1rem;
}

.table {
    margin-bottom: 0;
}

.table-dark {
    background-color: transparent;
    color: white;
}

.table-dark th {
    border-top: none;
    color: #ffc107;
    font-weight: 600;
    font-size: 0.9rem;
    border-color: #6c757d;
}

.table-dark td {
    vertical-align: middle;
    color: #adb5bd;
    font-size: 0.9rem;
    border-color: #6c757d;
}

.table-dark .text-muted {
    color: #adb5bd !important;
}

/* Badge Stilleri */
.badge {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
    border-radius: 0.375rem;
}

.bg-warning {
    background-color: #ffc107 !important;
    color: #000 !important;
}

.bg-success {
    background-color: #198754 !important;
    color: #fff !important;
}

.bg-danger {
    background-color: #dc3545 !important;
    color: #fff !important;
}

.bg-info {
    background-color: #0dcaf0 !important;
    color: #000 !important;
}

.bg-secondary {
    background-color: #6c757d !important;
    color: #fff !important;
}

/* Tablo satır hover efekti */
.table-dark tbody tr:hover {
    background-color: rgba(255, 193, 7, 0.1) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .auth-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .auth-info {
        margin-left: 0;
        max-width: 100%;
        flex-direction: row;
        justify-content: center;
    }
    
    .info-card {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .auth-container {
        padding: 100px 15px 40px;
    }
    
    .dark-container {
        padding: 60px 15px 30px;
    }
    
    .dark-card {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .auth-box {
        padding: 2rem;
    }
    
    .auth-info {
        flex-direction: column;
        align-items: center;
    }
    
    .info-card {
        max-width: 100%;
        width: 100%;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .dark-container {
        padding: 50px 10px 20px;
    }
    
    .dark-card {
        padding: 1rem;
    }
    
    .auth-box {
        padding: 1.5rem;
    }
    
    .auth-logo h1 {
        font-size: 1.5rem;
    }
    
    .auth-header h2 {
        font-size: 1.3rem;
    }
    
    .social-login {
        gap: 0.75rem;
    }
    
    .btn-social {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
} 