/* Contact Page Styles */

.contact-container {
    display: flex;
    min-height: 100dvh;
    background-color: #1a1a1a;
    /* Fallback */
    padding-top: 80px;
    /* Header height offset */
}

.contact-form-section {
    flex: 1;
    padding: 60px 80px;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
}

.contact-image-section {
    flex: 1;
    background-image: url('/Img/register-background.png');
    /* Placeholder, replace with actual image */
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-image-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #1a1a1a 0%, transparent 100%);
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
}

.form-group-contact {
    margin-bottom: 24px;
}

.form-label-contact {
    display: block;
    color: #b3b3b3;
    font-size: 14px;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.form-control-contact {
    width: 100%;
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 16px;
    color: #fff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.form-control-contact:focus {
    border-color: #555;
    background-color: rgba(255, 255, 255, 0.02);
}

textarea.form-control-contact {
    min-height: 120px;
    resize: vertical;
}

/* File Input Styling */
.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.file-upload-btn {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    border: none;
    display: inline-block;
}

.file-upload-btn:hover {
    background-color: #444;
}

.file-upload-info {
    color: #666;
    font-size: 13px;
}

input[type="file"] {
    display: none;
}

/* Checkbox Styling */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 24px 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 1px solid #444;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-wrapper input:checked+.checkbox-custom {
    background-color: #333;
    border-color: #666;
}

.checkbox-wrapper input:checked+.checkbox-custom::after {
    content: '✓';
    color: #fff;
    font-size: 14px;
}

.checkbox-label {
    color: #b3b3b3;
    font-size: 13px;
    line-height: 1.5;
    user-select: none;
}

.btn-submit-contact {
    width: 100%;
    padding: 16px;
    background-color: transparent;
    border: 1px solid #444;
    border-radius: 30px;
    /* Pill shape */
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}

.btn-submit-contact:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form-section {
        max-width: 100%;
        padding: 40px 20px;
    }

    .contact-image-section {
        display: none;
        /* Hide image on mobile/tablet or adjust height */
    }
}