/* ==========================================================================
   EPIK LEADERS - REJOINDRE-NOUS (JOIN US) PAGE STYLES
   ========================================================================== */

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    background: linear-gradient(135deg, #004862 0%, #B5252C 100%);
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   FLOATING ELEMENTS
   ========================================================================== */

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    }
}

/* ==========================================================================
   FORM STYLES
   ========================================================================== */

.form-container {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.95) 100%);
    backdrop-filter: blur(10px);
}

.input-field {
    transition: all 0.3s ease;
}

.input-field:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(181, 37, 44, 0.1);
}

/* ==========================================================================
   CUSTOM CHECKBOX
   ========================================================================== */

.checkbox-custom {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #B5252C;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-custom:checked {
    background-color: #B5252C;
    border-color: #B5252C;
}

.checkbox-custom:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* ==========================================================================
   SUCCESS MESSAGE
   ========================================================================== */

.success-message {
    display: none;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}
