/* ===================================
   AUTHENTICATION STYLES
   =================================== */

.auth-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    text-align: center;
    overflow: hidden;
}

.auth-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.auth-hero .hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--black), transparent);
    z-index: 1;
}

.auth-hero .hero-content {
    position: relative;
    z-index: 2;
}

.auth-hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 4px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    text-shadow: 
        0 0 20px rgba(0, 212, 255, 0.8),
        0 0 40px rgba(0, 212, 255, 0.6);
}

.auth-hero-title .title-icon {
    color: var(--neon-blue);
    text-shadow: 0 0 30px rgba(0, 212, 255, 1);
}

.auth-hero-subtitle {
    font-size: 20px;
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

/* Auth Section */
.auth-section {
    padding: 100px 0;
    background: var(--black);
}

.auth-container {
    max-width: 800px;
    margin: 0 auto;
}

.auth-form-wrapper {
    background: var(--medium-gray);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
    transition: all 0.3s ease;
}

.auth-form-wrapper.hidden {
    display: none;
}

.auth-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--neon-blue);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.auth-subtitle {
    font-size: 16px;
    color: var(--off-white);
    margin-bottom: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form small {
    font-size: 12px;
    color: var(--off-white);
    opacity: 0.7;
    margin-top: 5px;
    display: block;
}

.artist-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid var(--neon-blue);
    border-radius: 12px;
    margin-top: 20px;
}

.artist-fields.hidden {
    display: none;
}

.artist-fields h3 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--neon-blue);
    margin: 20px 0 10px 0;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 212, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.artist-fields h3:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.form-status {
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
    display: none;
}

.form-status.show {
    display: block;
}

.form-status.success {
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
}

.form-status.error {
    background: rgba(255, 0, 68, 0.1);
    border: 2px solid var(--neon-red);
    color: var(--neon-red);
}

.form-status.info {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
}

.form-status p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-status i {
    font-size: 18px;
}

.auth-links {
    margin-top: 25px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-links p {
    margin: 10px 0;
    color: var(--off-white);
    font-size: 14px;
}

.auth-links a {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.auth-links a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

/* Role Toggle Buttons */
.role-toggle-group,
.role-toggle-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.role-toggle-btn {
    flex: 1;
    padding: 20px;
    background: var(--black);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--off-white);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.role-toggle-btn i {
    font-size: 24px;
}

.role-toggle-btn:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.role-toggle-btn.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 65, 0.2));
    border-color: var(--neon-green);
    color: var(--white);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
}

@media (max-width: 768px) {
    .role-toggle-wrapper {
        flex-direction: column;
    }
    
    .role-toggle-btn {
        padding: 15px;
        font-size: 16px;
    }
    
    .role-toggle-btn i {
        font-size: 20px;
    }
}

/* Role Selection Cards */
.role-selection-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.role-option {
    cursor: pointer;
}

.role-option input[type="radio"] {
    display: none;
}

.role-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 25px 15px;
    background: var(--black);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.role-card i {
    font-size: 32px;
    color: var(--off-white);
    transition: all 0.3s ease;
}

.role-card strong {
    font-size: 18px;
    color: var(--white);
    font-weight: 700;
}

.role-card small {
    font-size: 12px;
    color: var(--off-white);
    opacity: 0.7;
}

.role-option:hover .role-card {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.role-option:hover .role-card i {
    color: var(--neon-cyan);
}

.role-option input[type="radio"]:checked + .role-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 65, 0.2));
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
}

.role-option input[type="radio"]:checked + .role-card i {
    color: var(--neon-green);
}

@media (max-width: 768px) {
    .role-selection-group {
        grid-template-columns: 1fr;
    }
    
    .role-card {
        padding: 20px;
    }
    
    .role-card i {
        font-size: 28px;
    }
}

/* Producer Terms Section */
#producerTermsBox {
    background: rgba(255, 153, 0, 0.1);
    border: 2px solid #ff9900;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

#producerTermsBox h4 {
    color: #ff9900;
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

#producerTermsBox .terms-content {
    color: var(--off-white);
    line-height: 1.8;
}

#producerTermsBox .terms-content h5 {
    color: var(--neon-cyan);
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

#producerTermsBox .terms-content ul {
    margin-left: 20px;
    margin-top: 10px;
}

#producerTermsBox .terms-content li {
    margin-bottom: 8px;
}

/* Responsive Auth */
@media (max-width: 768px) {
    .auth-hero {
        padding: 150px 0 80px;
    }
    
    .auth-hero-title {
        font-size: 36px;
        flex-direction: column;
        gap: 10px;
    }
    
    .auth-hero-subtitle {
        font-size: 16px;
    }
    
    .auth-section {
        padding: 60px 0;
    }
    
    .auth-form-wrapper {
        padding: 25px;
    }
    
    .auth-form-wrapper h2 {
        font-size: 24px;
    }
    
    .artist-fields {
        padding: 20px;
    }
    
    .artist-fields h3 {
        font-size: 20px;
    }
    
    #producerTermsBox {
        padding: 20px;
    }
    
    #producerTermsBox h4 {
        font-size: 20px;
    }
}
