/**
 * SoftwareHope Auth - Signup Page Styles
 * 
 * Note: Base login styles are loaded as a dependency via wp_enqueue_style
 */

/* Benefits Section */
.sh-auth-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.sh-benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sh-benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.sh-benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
}

.sh-benefit-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: white;
}

/* Logo Small (for signup right panel) */
.sh-auth-logo-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.sh-auth-logo-small img {
    width: 40px;
    height: 40px;
}

.sh-auth-logo-small h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #0052CC;
}

.sh-auth-logo-small h2 span {
    color: #4FC3F7;
}

/* Highlight text */
.sh-highlight {
    color: #4FC3F7;
}

/* Form Hints */
.sh-form-hint {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 6px;
}

/* Terms Text */
.sh-terms-text {
    font-size: 12px !important;
    color: #999 !important;
    margin-top: 15px !important;
}

.sh-terms-text a {
    color: #0052CC !important;
}

/* Responsive adjustments for benefits */
@media (max-width: 968px) {
    .sh-auth-benefits {
        gap: 15px;
    }
    
    .sh-benefit-item {
        padding: 15px;
    }
    
    .sh-benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .sh-benefit-item h3 {
        font-size: 16px;
    }
}
