/* Register CSS - Sihate Affiliate Pro Premium (Shopify-inspired) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

.sah-register-wrapper { 
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
    max-width: 800px; 
    margin: 40px auto; 
    padding: 20px; 
}

/* Auth Card Styles */
.sah-auth-wrapper {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.sah-auth-card {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 40px;
    border: 1px solid #e1e3e5;
    text-align: center;
}

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

.sah-auth-header h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
    color: #202223;
}

.sah-auth-header p {
    margin: 0;
    color: #6d7175;
    font-size: 14px;
}

.sah-register-card {
    max-width: 100% !important;
    text-align: left !important;
}

.sah-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sah-full-width {
    grid-column: span 2;
}

.sah-auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #202223;
}

.sah-auth-form input[type="text"],
.sah-auth-form input[type="email"],
.sah-auth-form input[type="tel"],
.sah-auth-form input[type="url"],
.sah-auth-form input[type="password"],
.sah-auth-form textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid #c9cccf !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    background: #fff !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s;
}

.sah-auth-form input:focus,
.sah-auth-form textarea:focus {
    border-color: #111827 !important;
    outline: none !important;
}

.sah-btn-primary { 
    background: #111827 !important; 
    color: #fff !important;
    transition: background 0.2s !important;
}

.sah-btn-primary:hover { 
    background: #1f2937 !important; 
}

/* Success Card */
.sah-success-card {
    text-align: center;
    padding: 60px 40px;
}

.sah-success-icon {
    width: 80px;
    height: 80px;
    background: #e6fff1;
    color: #008060;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
}

@media (max-width: 768px) {
    .sah-form-grid {
        grid-template-columns: 1fr;
    }
    .sah-full-width {
        grid-column: span 1;
    }
}
