/* 
 * Contact Form 7 Style for New Clients Plugin
 * Design minimalista que se integra perfeitamente com temas WordPress
 */

/* ============================================
   CONTAINER PRINCIPAL
   ============================================ */
#new-clients-form-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 16px;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Ocultar logo text */
.logo-text {
    display: none;
}

/* ============================================
   CABEÇALHO SIMPLIFICADO
   ============================================ */
.form-header {
    background: transparent;
    padding: 0 0 10px 0;
    margin-bottom: 10px;
    border-bottom: none;
    text-align: center;
}

.form-header h2 { display: none; }

.form-header p {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   BARRA DE PROGRESSO - ESTILO SIMPLES
   ============================================ */
.progress-bar {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 20px 0;
    padding: 15px 0;
    border-bottom: 1px solid #e1e1e1;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.progress-step.active {
    opacity: 1;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f7f7f7;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #ddd;
}

.progress-step.active .step-number {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.step-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #0073aa;
    font-weight: 600;
}

/* ============================================
   ETAPAS DO FORMULÁRIO
   ============================================ */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* ============================================
   SEÇÕES
   ============================================ */
.section {
    margin-bottom: 30px;
}

.section h3 {
    color: #333;
    font-size: 18px;
    margin: 0 0 20px 0;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #e1e1e1;
}

/* ============================================
   CAMPOS DE FORMULÁRIO - ESTILO CF7
   ============================================ */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="time"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

.form-group input.error {
    border-color: #dc3232;
}

.field-error {
    color: #dc3232;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Grid de campos */
.form-fields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

/* ============================================
   CHECKBOXES E RADIOS - ESTILO CF7
   ============================================ */
.hours-selection {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    margin: 0;
}

.radio-label input[type="radio"] {
    margin-right: 6px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.radio-custom {
    display: none;
}

/* Checkbox pequena */
.checkbox-label-small {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    margin-top: 6px;
    color: #666;
}

.checkbox-label-small input[type="checkbox"] {
    margin-right: 6px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkmark-small {
    display: none;
}

/* ============================================
   SERVIÇOS - LISTA SIMPLES
   ============================================ */
.services-category {
    margin-bottom: 30px;
}

.services-category h4 {
    color: #333;
    font-size: 16px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.service-card {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff;
    transition: border-color 0.2s;
}

.service-card:hover {
    border-color: #0073aa;
}

.service-label {
    display: flex;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    margin: 0;
}

.service-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.service-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.service-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 3px;
}

.service-description {
    color: #666;
    font-size: 13px;
}

.service-price {
    background: #f7f7f7;
    color: #0073aa;
    padding: 6px 12px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

/* ============================================
   CONFIRMAÇÃO
   ============================================ */
.confirmation-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.confirmation-section {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 3px;
    border-left: 3px solid #0073aa;
}

.confirmation-section h4 {
    color: #333;
    font-size: 15px;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.confirmation-section p {
    margin: 6px 0;
    font-size: 14px;
    color: #555;
}

.confirmation-total {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #0073aa;
    color: #fff;
    border-radius: 3px;
    font-size: 18px;
    font-weight: 600;
}

/* ============================================
   DECLARAÇÃO
   ============================================ */
.declaration-section {
    margin-top: 20px;
    padding: 15px;
    background: #fffbcc;
    border-radius: 3px;
    border-left: 3px solid #ffb900;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkmark {
    display: none;
}

.declaration-text {
    color: #333;
    font-weight: 500;
}

/* ============================================
   BOTÕES - ESTILO WORDPRESS
   ============================================ */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: 1px solid;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.btn-primary {
    background: #0073aa;
    border-color: #0073aa;
    color: #fff;
}

.btn-primary:hover {
    background: #005a87;
    border-color: #005a87;
}

.btn-secondary {
    background: #fff;
    border-color: #ddd;
    color: #333;
}

.btn-secondary:hover {
    background: #f7f7f7;
    border-color: #999;
}

.btn-success {
    background: #46b450;
    border-color: #46b450;
    color: #fff;
}

.btn-success:hover {
    background: #2ea32e;
    border-color: #2ea32e;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   MENSAGENS
   ============================================ */
#form-messages {
    margin: 20px 0;
}

.message {
    padding: 12px 15px;
    border-radius: 3px;
    margin-bottom: 10px;
    font-size: 14px;
}

.message-success {
    background: #ecf7ed;
    color: #2e7d32;
    border-left: 4px solid #46b450;
}

.message-error {
    background: #fef7f7;
    color: #d32f2f;
    border-left: 4px solid #dc3232;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 768px) {
    .progress-bar {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-fields-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .service-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .service-price {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .form-header h2 {
        font-size: 20px;
    }
    
    .service-label {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    
    .service-label input[type="checkbox"] {
        margin-bottom: 8px;
    }
}

/* ============================================
   REMOVER CATEGORIAS COLORIDAS
   ============================================ */
.category-anestesia,
.category-consulta,
.category-consulta_especialista,
.category-cirurgia_respiratoria,
.category-hernia,
.category-cirurgia_digestorio,
.category-cirurgia_urogenital,
.category-cirurgia_abdomen,
.category-cirurgia_otologica,
.category-sistema_tegumentar,
.category-cirurgia_ortopedica,
.category-exame_cardiologico,
.category-procedimento_cirurgico,
.category-fluidoterapia,
.category-exame_imagem,
.category-internacao,
.category-bioquimica,
.category-parasitologico,
.category-hematologia,
.category-urinalise,
.category-procedimento_diverso,
.category-procedimento_ambulatorial,
.category-vacina,
.category-castracao,
.category-teste_rapido {
    background: transparent !important;
    color: inherit !important;
}

/* Ícones de categoria - remover */
.category-icon {
    display: none;
}

/* ============================================
   NOVO FORMATO DE HORÁRIO DE FUNCIONAMENTO
   ============================================ */
/* Estilos para horários de funcionamento simplificados - sem elementos complexos */

/* ============================================
   SEÇÃO DE DESCONTOS
   ============================================ */
.section-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.discount-option {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.discount-option:hover {
    border-color: #0073aa;
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.1);
}

.discount-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 15px;
    margin-top: 2px;
    position: relative;
    background: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.discount-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.discount-option input[type="checkbox"]:checked + .discount-checkbox {
    background: #0073aa;
    border-color: #0073aa;
}

.discount-option input[type="checkbox"]:checked + .discount-checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.discount-option:has(input[type="checkbox"]:checked) {
    border-color: #0073aa;
    background: #e3f2fd;
}

.discount-content {
    flex: 1;
}

.discount-content h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.discount-content p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

.discount-note {
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    margin-top: 20px;
}

.discount-note p {
    margin: 0;
    color: #856404;
    font-size: 13px;
    line-height: 1.4;
}

.discount-note strong {
    color: #533f03;
}

/* Responsividade para seção de descontos */
@media (max-width: 768px) {
    .discounts-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .discount-option {
        padding: 15px;
    }
    
    .discount-content h4 {
        font-size: 15px;
    }
    
    .discount-content p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .discount-option {
        padding: 12px;
    }
    
    .discount-checkbox {
        width: 18px;
        height: 18px;
        margin-right: 12px;
    }
}

/* ============================================
   TELA DE SUCESSO
   ============================================ */
.success-container {
    text-align: center;
    padding: 40px 20px;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.success-icon {
    margin-bottom: 20px;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.success-title {
    color: #059669;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.success-message {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.redirect-message {
    color: #666;
    font-size: 14px;
    margin: 0 0 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #059669;
}

#countdown {
    font-weight: 600;
    color: #059669;
    font-size: 16px;
}

.redirect-link {
    margin-top: 20px;
}

.btn-redirect {
    display: inline-block;
    padding: 12px 24px;
    background: #059669;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-redirect:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    color: white;
    text-decoration: none;
}

.btn-redirect:active {
    transform: translateY(0);
}

/* Seção Próximos Passos */
.next-steps {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #059669;
    text-align: left;
}

.next-steps h3 {
    color: #059669;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps li {
    margin-bottom: 12px;
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.next-steps li:last-child {
    margin-bottom: 0;
}

.next-steps li strong {
    color: #333;
    font-weight: 600;
}

/* Responsividade para tela de sucesso */
@media (max-width: 768px) {
    .success-container {
        padding: 30px 15px;
        margin: 20px;
    }
    
    .success-title {
        font-size: 24px;
    }
    
    .success-message {
        font-size: 15px;
    }
    
    .next-steps {
        margin: 20px 0;
        padding: 15px;
    }
    
    .next-steps h3 {
        font-size: 16px;
    }
    
    .next-steps li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .success-container {
        padding: 25px 10px;
        margin: 10px;
    }
    
    .success-title {
        font-size: 22px;
    }
    
    .success-message {
        font-size: 14px;
    }
    
    .next-steps {
        margin: 15px 0;
        padding: 12px;
    }
    
    .next-steps h3 {
        font-size: 15px;
    }
    
    .next-steps li {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .btn-redirect {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Estilo para indicador de carregamento do CEP */
#cep.loading {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230073aa" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M12 6v6l4 2"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
}

/* ============================================
   ORIENTAÇÕES INICIAIS E TABELAS PADRÃO
   ============================================ */
#initial-guidelines {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 24px;
}

#initial-guidelines h3 {
    border-bottom: none;
    margin-bottom: 8px;
}

#initial-guidelines p {
    margin: 8px 0;
    color: #444;
    font-size: 14px;
}

.tables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.table-guidelines {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.table-guidelines thead th {
    padding: 10px 12px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

/* Cabeçalhos com cores específicas, seguindo a arte enviada */
.tables-grid .table-guidelines:first-child thead th {
    background: #2e7d32; /* verde */
}

.tables-grid .table-guidelines:last-child thead th {
    background: #6f42c1; /* roxo */
}

.table-guidelines tbody td {
    padding: 8px 10px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
    color: #333;
}

.table-guidelines tbody tr:last-child td {
    border-bottom: none;
}

/* Destaque suave quando focamos a seção de Anestesias via JS */
.services-category:target,
#category-anestesia {
    scroll-margin-top: 60px;
}

@media (max-width: 900px) {
    .tables-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ELEMENTOS DA TELA DE SUCESSO PADRONIZADA
   ============================================ */
.success-icon-container {
    text-align: center;
    margin-bottom: 20px;
}

.success-icon {
    display: inline-block;
    margin-bottom: 10px;
}

.success-icon svg {
    display: block;
    margin: 0 auto;
}

/* Lista de próximos passos */
.next-steps-list {
    margin-top: 20px;
}

.next-step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #059669;
}

.step-icon {
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-content {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.redirect-message {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 0;
}

#countdown {
    color: #059669;
    font-weight: 700;
}

/* Botão de sucesso */
.btn-success {
    background: #059669;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-success:hover {
    background: #047857;
    color: white;
    text-decoration: none;
}

/* ============================================
   CAMPO DE HORÁRIO COMERCIAL
   ============================================ */
.commercial-hours-input {
    margin-top: 10px;
    margin-left: 30px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #0073aa;
}

.commercial-hours-input input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    background: white;
}

.commercial-hours-input input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

/* ============================================
   ETAPA DE VALIDAÇÃO DE CÓDIGO
   ============================================ */
.form-step[data-step="0"] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
    margin: 0 auto 24px auto;
    text-align: center;
    max-width: 720px;
}

.form-step[data-step="0"] h3 {
    color: #0073aa;
    font-size: 28px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.form-step[data-step="0"] p {
    color: #666;
    font-size: 16px;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.form-step[data-step="0"] .form-group {
    max-width: 400px;
    margin: 0 auto 20px auto;
    text-align: left;
}

.form-step[data-step="0"] .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.form-step[data-step="0"] .form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.form-step[data-step="0"] .form-group input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.form-step[data-step="0"] .form-help {
    display: block;
    margin-top: 8px;
    color: #888;
    font-size: 14px;
    font-style: italic;
}

.form-step[data-step="0"] .btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-step[data-step="0"] .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

.form-step[data-step="0"] .form-actions {
    justify-content: center;
    margin-top: 2px;
    padding-top: 0;
    border-top: none;
}

/* Aproximar o botão da dica do campo na etapa 0 */
.form-step[data-step="0"] .form-group {
    margin: 0 auto 6px auto;
}

.form-step[data-step="0"] .form-help {
    margin-top: 4px;
    margin-bottom: 0;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin-top: 20px;
    text-align: center;
}

.error-message p {
    margin: 0;
    font-weight: 500;
}

/* Estilo especial para o ícone de código na barra de progresso */
.progress-step[data-step="0"] .step-number {
    font-size: 20px;
    line-height: 1;
}

/* Responsividade para a etapa de validação */
@media (max-width: 768px) {
    .form-step[data-step="0"] {
        padding: 30px 20px;
    }
    
    .form-step[data-step="0"] h3 {
        font-size: 24px;
    }
    
    .form-step[data-step="0"] .form-group input {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .form-step[data-step="0"] .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}