:root {
    --primary-color: #1d2657;
    --dark-color: #05326D;
    --light-color: #042552;
    --secondary-color: #FF914D;
    --white-color: #FFFFFF;
    --black-color: #50626C;
    --base-color: #f0f0f5;

    --text-primary: #607086;
    --text-dark: #252831;
    --text-light: #aab2bd;


    --t1: 50px;
    --t2: 24px;
    --t3: 18px;
    --t4: 16px;
    --t5: 14px;
    --t6: 12px;
    --t7: 10px;
    --t8: 8px;

}

html{
    scroll-behavior: smooth;
}

p{
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 300;
    line-height : 25px;
}


*,*::after,*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Merriweather Sans', sans-serif;
    padding-top: 0px;
    background-color: var(--white-color);
}



.btn {
    text-decoration: none;
    border: none;
    list-style: none;
    max-height: 50px;
}

.required{
    color: rgb(216, 0, 0);
}

.btn-primary{
    color: white;
    background-color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
}


.container{
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.content{
    width: 80%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.content-header{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-bottom: 40px;

}

.flex-row{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    flex-wrap: wrap;
    gap: 40px;
}

.form {
    width: 100%;
}


.form form{
    width: 100%;
}

.form-item-group{
    display: flex;
    flex-direction: row;
    justify-content: start;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
}

.form-item-column{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgb(54, 54, 54);
}

.form-item{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgb(54, 54, 54);
    width: 400px;
}

.form-item label{
    font-size: 14px;

}

.form-item .label-sm{
    font-size: 12px;
    text-align: start;
}

.form-item .input{
    width: 100%;
    height: 45px;
    background-color: var(--base-color);
    border: none;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 300;
    border-radius: 5px;
}

.form-item .select-multiple{
    height: 75px;
}

.form-item .input-file::-webkit-file-upload-button{
    height: 100%;
    margin-right: 25px;
    background-color: var(--secondary-color);
    padding: 0 30px;
    font-size: 18px;
    color: white;
    border: none;
    cursor: pointer;
}

.form-item .input-file{
    padding: 0;
    overflow: hidden;

}

.form-item .input-error{
    border: 2px solid rgb(236, 2, 2);
}

.form-item .error-message{
    color: rgb(236, 2, 2);
    font-size: 12px;
}

.form-item input:focus{
    outline: none;
}

.form-control{
    padding-top: 50px;
}

.form-control input{
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: var(--white-color);
    font-size: 18px;
    padding: 10px 25px;
    cursor: pointer;
}

.encabezado{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
}

.encabezado .logo{
    width: 300px;
}

.encabezado .logo img{
    width: 100%;
}

.encabezado .title{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.message{
    width: 100%;
    padding: 30px 50px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}

.msg-error{
    background-color: #f8d4d4;
    color: #841717;
}

.msg-success{
    background-color: #e0edcf;
    color: #3d6209;
}

.hidden{
    display: none;
}

.message-close button{
    font-weight: 300;
    font-size: 40px;
    border: none;
    background: none;
    cursor: pointer;
}

#btn_message_close_error{
    color: #841717;
}

#btn_message_close_sucess{
    color: #3d6209;
}

.message h3{
    padding-bottom: 15px;
    font-size: 18px;
}

.message ul{
    font-size: 14px;
}












@media (max-width: 1400px){

}

@media (max-width: 1200px){

}

@media (max-width: 992px){

}

@media (max-width: 768px){
    .encabezado .logo{
        display: none;
    }
}

@media (max-width: 576px){

    .form-item{
        flex-direction: column;
    }

    .form-item label{
        width: 100%;
        max-width: 100%;
    }

    .form-item-group{
        flex-wrap: wrap;
    }

    .form-item .label-sm{
        text-align: start;
    }

}
