/* NUEVO CONTENEDOR ESPECÍFICO PARA REGISTRO */
.register-container {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 95%;
    max-width: 900px;
    margin: 20px auto;
}

/* Estilos para el formulario de registro en grid de 2 columnas */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 30px;
    margin-bottom: 20px;
    width: 100%;
}

.form-group {
    margin-bottom: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group.half-width {
    /* Ocupa 1 columna */
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.required::after {
    content: " *";
    color: #e74c3c;
    font-weight: bold;
}

.form-hint {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 4px;
    line-height: 1.3;
    font-style: italic;
}

.register-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.register-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.section-description {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.85rem;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    margin: 12px 0;
    font-size: 13px;
    grid-column: span 2;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.terms-checkbox input {
    margin-right: 10px;
}

.terms-checkbox label {
    line-height: 1.5;
}

.terms-link {
    color: #2980b9;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.submit-row {
    grid-column: span 2;
    text-align: center;
    margin-top: 10px;
}

.back-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .register-container {
    width: 98%;
    padding: 1.5rem;
    }
    
    .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    }
    
    .form-group.full-width,
    .form-group.half-width,
    .terms-checkbox,
    .submit-row {
    grid-column: span 1;
    }
}

/* Estilo específico para CUIT */
#regCuit {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

/* Estilo para selects */
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 15px center;
    background-size: 16px;
    padding-right: 40px;
}