/* Form Styles */
.form-page {
    background-color: #f9fafb;
    min-height: calc(100vh - 200px);
    /* Adjust based on header/footer height */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 800px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.bizai-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group textarea {
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    border-color: #000;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

/* Radio Button Styling */
.radio-group {
    display: flex;
    gap: 15px;
}

.radio-option {
    flex: 1;
    cursor: pointer;
    position: relative;
}

.radio-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    background: white;
}

.radio-option input:checked+.radio-custom {
    border-color: #000;
    background-color: #000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.radio-option:hover .radio-custom {
    border-color: #ccc;
}

/* Action Buttons */
.form-actions {
    margin-top: 20px;
    text-align: center;
}

.btn-submit {
    background-color: #000;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-submit i {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .form-page {
        padding: 40px 15px;
        min-height: auto;
    }

    .form-container {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .form-header {
        margin-bottom: 30px;
    }

    .form-header h1 {
        font-size: 2rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    /* Keep radio buttons side-by-side for Sim/Não but ensure touch targets are good */
    .radio-custom {
        padding: 12px 10px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .form-header h1 {
        font-size: 1.75rem;
    }

    .form-header p {
        font-size: 1rem;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

    /* Stack radio buttons only on very small screens if needed, 
       but for Sim/Não 50% width is usually fine. 
       Let's keep them row but ensure good sizing. */
    .radio-group {
        gap: 10px;
    }
}