﻿/* CONTENEDOR PRINCIPAL */
.card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 70px 30px 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
    .card-modern:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    }
    .card-modern form {
        background: white;
        padding: 25px;
        border-radius: 15px;
        border: 1px solid #e6e6e6;
    }
/* TÍTULO */
.card-modern-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 40px;
    /*font-size: clamp(14px, 2vw, 22px);*/
    font-size: 18px;
    font-weight: 700;
    color: white;
    background: linear-gradient(90deg, #0a3d62, #0d6efd);
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
}
    .estandar-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 10px rgba(13,110,253,0.3);
    }
/* CHECKBOXES */
.estandar-check-input {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

/* TÍTULOS DE SECCIÓN */
.section-title {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 17px;
    margin-top: 10px;
    border: 1px solid #e0e0e0;
}

/* TABLAS */
.table-modern {
    border-radius: 10px;
    overflow: hidden;
}

    .table-modern thead {
        background: #0d6efd;
        color: white;
    }

/* BOTONES */
.btn {
    border-radius: 8px !important;
    font-size: 15px;
    padding: 8px 16px;
    margin-top: 10px;
}

}
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.form-container {
    display: flex;
    justify-content: center; 
    align-items: center;      
    height: 100vh;            
    background: #f0f2f5;      
    padding: 20px;
}
.form-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }