body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f6f9;
}

.registro-section {
    width: 100%;
    padding: 40px 0;
}

.registro-container {
    width: 94%;
    max-width: 94%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #ffffff;
}

.edificio4{font-size:5vh; font-family:Calibri; color:#000055;}

/* Columna 1 */
.reg-col-left {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reg-main-title {
    font-size: 1.6rem;
    color: #000055;
    margin-bottom: 20px;
    line-height: 1.3;
}

.reg-logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 25px;
}

.reg-info-box p {
    margin: 8px 0;
    color: #444;
    font-size: 0.95rem;
}

.reg-message {
    margin-top: 20px !important;
    font-style: italic;
    color: #666;
}

/* Columna 2 (#000055) */
.reg-col-right {
    background-color: #000055;
    color: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reg-col-right h2 {
    margin-top: 0;
    font-size: 1.8rem;
    border-bottom: 2px solid #FF7700;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.reg-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.reg-form-group label {
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.reg-form-group input {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.reg-privacy-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.8rem;
	color:#EEEEEE;
    line-height: 1.4;
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    cursor: pointer;
    font-weight: bold;
}

.btn-submit {
    background-color: #FF7700;
    color: #000055;
    font-weight: bold;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:disabled {
    background-color: #777;
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-submit:not(:disabled):hover {
    background-color: #ff8c1a;
}

/* Modales */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.modal-card h2 {
    color: #000055;
    margin-top: 0;
    font-size: 1.4rem;
}

.sub-section-title {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.form-grid.single-col {
    grid-template-columns: 1fr 1fr;
}

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

.field.full-width {
    grid-column: span 2;
}

.field label {
    font-size: 0.85rem;
    font-weight: bold;
    color: #333;
}

.field input, .field select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
}

.readonly-input {
    background-color: #e9ecef;
    color: #495057;
    cursor: not-allowed;
}

.modal-footer {
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
}

.btn-action {
    background-color: #000055;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.btn-action:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.btn-save {
    background-color: #28a745;
}

.modal-header-nav {
    margin-bottom: 15px;
}

.btn-back {
    background: transparent;
    border: 1px solid #000055;
    color: #000055;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* Responsivo */
@media (max-width: 850px) {
    .registro-container {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }

    .field.full-width {
        grid-column: span 1;
    }
	
	.edificio4{font-size:2.2vh;}
	.reg-main-title {font-size: 1.2rem;}
}