#formPostulacion {
    width: 65% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    background: #fff;
    padding: 30px !important;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

fieldset {
    border: 1px solid #ccc;
    padding: 1%;
    margin: 20px;
}

legend {
    font-weight: bold;
    padding: 0 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.full-width {
    grid-column: span 2;
}

.span-2 {
    grid-column: span 2;
}

label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

input, select, textarea {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 4px;
}

.boton-enviar {
    padding: 12px 20px;
    font-size: 16px;
    background-color: #2a8fd5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.boton-enviar:hover {
    background-color: #1f6fa1;
}

.grid-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 100%;
}

.grid-form label {
    display: flex;
    flex-direction: column;
}

.grid-form .full-width {
    grid-column: span 3;
}

.entry {
    border: 1px solid #ccc; 
    padding: 10px !important; 
    margin-top: 10px !important; 
    margin-bottom: 10px !important; 
    position: relative; 
    padding:1px;
}

.close-btn {
    position: relative;
    bottom: 25px; 
    right: -25px;
    padding: 1px;
    border-radius: 10px !important;
    float: right !important;
    background-color: white !important;
}

#table-list-forms {
    background-color:#fff;
    padding: 1%;
    border-radius: 10px;
}

@media (min-width: 268px) and (max-width: 768px) {

    #formPostulacion {
        width: 100% !important;
        padding: 6px !important;
    }

    input, select, textarea {
        width: 99%;
        padding: 2px;
    }

    fieldset {
        width: 100%  !important;
        padding: 6px !important;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .full-width,
    .span-2 {
        grid-column: span 1;
    }
}