/* =========================================================================
   Estilos del Formulario de Registro para Instructores de Yoga - Taorayina
   ========================================================================= */

.taorayina-yoga-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 35px;
    background-color: #fcfdfa;
    border: 1px solid #e2ebd5;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(98, 135, 120, 0.05);
    font-family: 'Montserrat', sans-serif;
    color: #1c2a22;
}

#taorayina-yoga-instructor-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.yoga-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .yoga-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.yoga-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.yoga-field label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4a6356;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yoga-field input[type="text"],
.yoga-field input[type="email"],
.yoga-field input[type="tel"],
.yoga-field input[type="date"],
.yoga-field input[type="number"],
.yoga-field select {
    padding: 14px 16px;
    border: 1.5px solid #d0dfd6;
    background-color: #ffffff;
    color: #1c2a22;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 200ms ease, box-shadow 200ms ease;
    width: 100%;
    box-sizing: border-box;
}

.yoga-field input:focus,
.yoga-field select:focus {
    border-color: #628778;
    box-shadow: 0 0 0 4px rgba(98, 135, 120, 0.1);
}

.submit-yoga-btn {
    background-color: #628778 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 16px 28px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: transform 160ms ease-out, background-color 160ms ease, opacity 160ms ease !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(98, 135, 120, 0.2);
}

.submit-yoga-btn:hover { background-color: #527265 !important; }
.submit-yoga-btn:active { transform: scale(0.97) !important; }
.submit-yoga-btn:disabled { background-color: #a3baa8 !important; cursor: not-allowed !important; transform: none !important; }

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.yoga-form-message {
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.yoga-form-message.success { background-color: #eaf5ec; color: #2b703a; border: 1px solid #c2e5c9; }
.yoga-form-message.error { background-color: #fdf2f2; color: #ae2d2d; border: 1px solid #f9d7d7; }