/* Estilos generales */
.registro-mayorista-form {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Sistema de filas y columnas */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 20px;
}

.form-col {
    padding: 0 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.form-row-2 .form-col {
    width: 50%;
}

.form-row-3 .form-col {
    width: 33.333%;
}

.form-row-4 .form-col {
    width: 25%;
}

/* Elementos del formulario */
.registro-mayorista-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.registro-mayorista-form input[type="text"],
.registro-mayorista-form input[type="email"],
.registro-mayorista-form input[type="tel"],
.registro-mayorista-form input[type="password"],
.registro-mayorista-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.registro-mayorista-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 35px;
}

/* Botón de enviar */
.form-submit {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.btn-send-mayorista {
    background-color: #FF01F5 !important;
    color: #ffffff !important;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.btn-send-mayorista:hover {
    background-color: #45a049;
}

/* Mensajes */
#form-messages {
    margin-top: 15px;
}

.error {
    color: #d32f2f;
    padding: 10px;
    background: #ffebee;
    border-radius: 4px;
}

.success {
    color: #388e3c;
    padding: 10px;
    background: #e8f5e9;
    border-radius: 4px;
}

.required {
    color: #d32f2f;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row-2 .form-col,
    .form-row-3 .form-col,
    .form-row-4 .form-col {
        width: 100%;
    }
}