/* Fuentes del sitio */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Marck+Script&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Declaración de variables */
:root{
    --blue-primary:#0B497A;
    --blue-secondary:#0C162E;
    --red-primary:#C9141B;
    --button:#EB5148;
    --black-primary:#23242A;
    --gray-primary:#D1DCE5;
    --white-primary:#D1DCE5;
    --white:#FFF;
    --gray:#484848;
    --gray-text:#333333;
    --input:#000842;
    --label:#999999;
    --black:#000;
    --blue-nav:rgba(12, 22, 46, 0.8);
    --beige:#F2EFEC;
    --ocre:#C59861;
    --title:#23284C;
    --marck-script:"Marck Script", serif;
    --playfair-display:"Playfair Display", serif;
    --montserrat:"Montserrat", serif;
    --poppins:"Poppins", serif;
    --iner:"Inter", serif;
    --open-sans:"Open Sans", serif;


}
a{
    text-decoration: none;
    color: var(--button);
    transition: 0.3s all ease-in-out;
}

a:hover{
    color: var(--red-primary);
}
.container-acceso{
    height: 97vh;
    padding: 1rem;
}

.img-acceso-lateral{
    height:95vh;
    width: 100%;
    object-fit: cover;
}

.tutti-img, .agency-img{
    height: 20px;
}

.img-logo-container{
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.title-section{
    font-family: var(--poppins);
    font-size: 30px;
    font-weight: 500;
    line-height: 45px;
    margin-top: 3rem;
}

.subtitle-section{
    font-family: var(--poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 2rem;
}

.form-register{
    width: 80%;
}

.form-register label{
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 14px;
    color: var(--label);
    line-height: 20px;
}

.form-register input.form-control{
    border: none;
    border-bottom: 2px solid var(--label);
    font-family: var(--poppins);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--input);
    padding-left: 1.5rem;
    transition: 0.3s all ease-in-out;
}


.form-register .form-group{
    position: relative;
    margin-bottom: 1.5rem;
}

.form-register span.icon-input{
    position: absolute;
    top: 0%;
    left: 0;
    transform: translate(0%,122%);
    color: var(--label);
}


.form-register input.form-control:focus{
    box-shadow: none;
    border-bottom:2px solid var(--input);
    color: var(--input);
}


.ver-password{
    position: absolute;
    right: 5px;
    top: 0;
    transform: translate(0%,122%);
}

.row-button{
    margin-top: 1.5rem;
}

.btn.btn-primary{
    background: var(--button);
    color: var(--white);
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 17px;
    line-height: 25.5px;
    border-radius: 32px;
    box-shadow: 0px 4px 26px 0px rgba(0, 0, 0, 0.25);
    border: none;
    padding: 1rem 2rem;
    transition: 0.3s all ease-in-out;
}


.btn.btn-primary:hover{
    background: var(--red-primary);
    box-shadow: 0px 4px 26px 0px rgba(164, 49, 49, 0.25);
}

.btn.btn-primary.recuperar{
    padding: 0.5rem 1rem;
}
.img-acceso-lateral{
    border-radius: 15px;
}

.options-login{
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

label.form-check-label{
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
}

a.forgot{
    text-decoration: none;
    color: var(--label);
    font-family: var(--poppins);
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
}

.form-check-input:checked{
    background: var(--button);
    border-color: var(--button);
}

.form-check-input:focus{
    box-shadow: none;
}

.modal-content{
    border-radius: 15px;
}