/* Affiliate Register Page Styles */

/* Hero Section */
.affiliate-hero {
    background: linear-gradient(135deg, #5756d4 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 28px;
    text-align: center;
}

.affiliate-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.affiliate-hero p {
    font-size: 1.2rem;
    margin-bottom: 22px;
    opacity: 0.9;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    opacity: 0.9;
    display: block;
}

.hero-cta {
    margin-top: 40px;
    text-align: center;
}

.hero-cta-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    background: white;
    color: #5756d4;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
}

.hero-subtext {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-login-link {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

/* Benefits / How it works */
.benefits {
    padding: 0px 20px 60px 20px;
    background: white;
    display: block !important;
    visibility: visible !important;
}

.benefits .container {
    max-width: 1200px;
    margin: 0 auto;
}

.commission-highlight {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    display: inline-block;
}

.commission-highlight .percentage {
    font-size: 3rem;
    font-weight: bold;
    color: #ffd700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 3rem;
    color: #5756d4;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.section-light {
    background: #f8fafc;
    padding: 50px 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.info-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.info-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.info-box p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.info-box p.highlight {
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 500;
}

.form-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.info-note {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    border-radius: 4px;
    color: #1976d2;
    font-size: 0.9rem;
}

.social-login-wrapper {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.social-login-separator {
    position: relative;
    display: inline-block;
    width: 100%;
}

.separator-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e5e9;
}

.separator-text {
    position: relative;
    background: white;
    padding: 0 15px;
    color: #666;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-google:hover {
    box-shadow: var(--shadow-sm);
}

.provider-icon {
    width: 20px;
    height: 20px;
}

.login-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.login-link:hover {
    text-decoration: underline;
}
