@font-face {
    font-family: regular;
    src: url(../../recursos/fonts/regular.otf);
}

@font-face {
    font-family: negrita;
    src: url(../../recursos/fonts/bold.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

html,
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.contenedor_principal {
    display: flex;
    width: 100%;
    min-height: 100vh;
    background: url(../../recursos/img/bg_05_property.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* MEDIA QUERY 1: min-width: 1367px */
@media (min-width: 1367px) {
    .seccion_login {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        gap: 30px;
        background: rgba(255, 255, 255, 0.95);
    }

    .volver {
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .volver img {
        width: 30px;
        height: 30px;
    }

    .logo_azul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .isotipo_azul {
        display: flex;
        width: 100px;
        height: 100px;
        background: #0c388b;
        border-radius: 10px;
        justify-content: center;
        align-items: center;
    }

    .isotipo_azul img {
        width: 70px;
        height: 70px;
    }

    .logo_azul h3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: negrita;
        color: #0c388b;
        font-size: 28px;
        text-align: center;
    }

    .logo_azul h3 b {
        font-family: regular;
        font-size: 20px;
        font-weight: lighter;
    }

    h1 {
        font-family: negrita;
        color: #0c388b;
        font-size: 30px;
        text-align: center;
    }

    form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .campo_datos {
        display: flex;
        flex-direction: column;
        width: 400px;
        border: 1px solid #cccccc;
        border-radius: 20px;
        align-items: center;
    }

    .campo_datos label {
        display: flex;
        width: 100%;
        height: 50px;
        position: relative;
    }

    .campo_bg {
        position: absolute;
        inset: 0;
        background: #fff;
        border: 1px solid rgba(12, 56, 139, 0.3);
        z-index: -1;
        pointer-events: none;
        box-shadow: rgba(33, 50, 66, 0.2) 0px 1px 3px;
        border-radius: 30px;
    }

    input {
        font-family: regular;
        color: #0c388b;
        font-size: 15px;
        width: 100%;
        height: 100%;
        background: none;
        border: none;
        padding: 0 20px;
    }

    input:focus {
        outline: none;
    }

    input:focus~.campo_bg {
        border: 1px solid #0c388b;
        background: transparent;
    }

    ::placeholder {
        font-family: regular;
        color: #0c388b;
        font-size: 15px;
    }

    .contenedor_boton {
        display: flex;
        justify-content: center;
    }

    .boton_acceder {
        display: flex;
        width: 200px;
        height: 40px;
        background: linear-gradient(to right, #0c388b, #3434d9);
        border-radius: 30px;
        border: none;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        overflow: hidden;
        position: relative;
    }

    .boton_acceder h2 {
        font-family: regular;
        font-size: 15px;
        color: #fff;
        z-index: 10;
        position: relative;
    }

    .boton_acceder:hover {
        background: linear-gradient(to right, #3434d9, #0c388b);
    }

    .boton_acceder:active {
        transform: scale(0.95);
    }

    .texto_recuperar {
        font-family: regular;
        color: #0c388b;
        font-size: 15px;
    }

    .enlace_recuperar {
        font-family: negrita;
        color: #0c388b;
        text-decoration: none;
        font-size: 15px;
    }

    .enlace_recuperar:hover {
        color: #6666FF;
    }

    footer {
        position: absolute;
        bottom: 0;
        display: flex;
        width: 100%;
        height: 40px;
        justify-content: center;
        align-items: center;
    }

    footer p {
        font-family: regular;
        color: #0c388b;
        font-size: 15px;
    }
}

/* MEDIA QUERY 2: 1281px - 1366px */
@media (min-width: 1281px) and (max-width: 1366px) {
    .seccion_login {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        gap: 30px;
        background: rgba(255, 255, 255, 0.95);
    }

    .volver {
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .volver img {
        width: 28px;
        height: 28px;
    }

    .logo_azul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .isotipo_azul {
        display: flex;
        width: 90px;
        height: 90px;
        background: #0c388b;
        border-radius: 10px;
        justify-content: center;
        align-items: center;
    }

    .isotipo_azul img {
        width: 60px;
        height: 60px;
    }

    .logo_azul h3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: negrita;
        color: #0c388b;
        font-size: 24px;
        text-align: center;
    }

    .logo_azul h3 b {
        font-family: regular;
        font-size: 18px;
        font-weight: lighter;
    }

    h1 {
        font-family: negrita;
        color: #0c388b;
        font-size: 25px;
        text-align: center;
    }

    form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .campo_datos {
        display: flex;
        flex-direction: column;
        width: 400px;
        border: 1px solid #cccccc;
        border-radius: 20px;
        align-items: center;
    }

    .campo_datos label {
        display: flex;
        width: 100%;
        height: 40px;
        position: relative;
    }

    .campo_bg {
        position: absolute;
        inset: 0;
        background: #fff;
        border: 1px solid rgba(12, 56, 139, 0.3);
        z-index: -1;
        pointer-events: none;
        box-shadow: rgba(33, 50, 66, 0.2) 0px 1px 3px;
        border-radius: 30px;
    }

    input {
        font-family: regular;
        color: #0c388b;
        font-size: 15px;
        width: 100%;
        height: 100%;
        background: none;
        border: none;
        padding: 0 20px;
    }

    input:focus {
        outline: none;
    }

    input:focus~.campo_bg {
        border: 1px solid #0c388b;
        background: transparent;
    }

    ::placeholder {
        font-family: regular;
        color: #0c388b;
        font-size: 15px;
    }

    .contenedor_boton {
        display: flex;
        justify-content: center;
    }

    .boton_acceder {
        display: flex;
        width: 200px;
        height: 35px;
        background: linear-gradient(to right, #0c388b, #3434d9);
        border-radius: 30px;
        border: none;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        overflow: hidden;
        position: relative;
    }

    .boton_acceder h2 {
        font-family: regular;
        font-size: 12px;
        color: #fff;
        z-index: 10;
        position: relative;
    }

    .boton_acceder:hover {
        background: linear-gradient(to right, #3434d9, #0c388b);
    }

    .boton_acceder:active {
        transform: scale(0.95);
    }

    .texto_recuperar {
        font-family: regular;
        color: #0c388b;
        font-size: 13px;
    }

    .enlace_recuperar {
        font-family: negrita;
        color: #0c388b;
        text-decoration: none;
        font-size: 13px;
    }

    .enlace_recuperar:hover {
        color: #6666FF;
    }

    footer {
        position: absolute;
        bottom: 0;
        display: flex;
        width: 100%;
        height: 40px;
        justify-content: center;
        align-items: center;
    }

    footer p {
        font-family: regular;
        color: #0c388b;
        font-size: 12px;
    }
}

/* MEDIA QUERY 3: 1025px - 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .seccion_login {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        gap: 20px;
        background: rgba(255, 255, 255, 0.95);
    }

    .volver {
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .volver img {
        width: 25px;
        height: 25px;
    }

    .logo_azul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .isotipo_azul {
        display: flex;
        width: 80px;
        height: 80px;
        background: #0c388b;
        border-radius: 10px;
        justify-content: center;
        align-items: center;
    }

    .isotipo_azul img {
        width: 55px;
        height: 55px;
    }

    .logo_azul h3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: negrita;
        color: #0c388b;
        font-size: 22px;
        text-align: center;
    }

    .logo_azul h3 b {
        font-family: regular;
        font-size: 16px;
        font-weight: lighter;
    }

    h1 {
        font-family: negrita;
        color: #0c388b;
        font-size: 25px;
        text-align: center;
    }

    form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .campo_datos {
        display: flex;
        flex-direction: column;
        width: 400px;
        border: 1px solid #cccccc;
        border-radius: 20px;
        align-items: center;
    }

    .campo_datos label {
        display: flex;
        width: 100%;
        height: 40px;
        position: relative;
    }

    .campo_bg {
        position: absolute;
        inset: 0;
        background: #fff;
        border: 1px solid rgba(12, 56, 139, 0.3);
        z-index: -1;
        pointer-events: none;
        box-shadow: rgba(33, 50, 66, 0.2) 0px 1px 3px;
        border-radius: 30px;
    }

    input {
        font-family: regular;
        color: #0c388b;
        font-size: 15px;
        width: 100%;
        height: 100%;
        background: none;
        border: none;
        padding: 0 20px;
    }

    input:focus {
        outline: none;
    }

    input:focus~.campo_bg {
        border: 1px solid #0c388b;
        background: transparent;
    }

    ::placeholder {
        font-family: regular;
        color: #0c388b;
        font-size: 15px;
    }

    .contenedor_boton {
        display: flex;
        justify-content: center;
    }

    .boton_acceder {
        display: flex;
        width: 180px;
        height: 30px;
        background: linear-gradient(to right, #0c388b, #3434d9);
        border-radius: 30px;
        border: none;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        overflow: hidden;
        position: relative;
    }

    .boton_acceder h2 {
        font-family: regular;
        font-size: 10px;
        color: #fff;
        z-index: 10;
        position: relative;
    }

    .boton_acceder:hover {
        background: linear-gradient(to right, #3434d9, #0c388b);
    }

    .boton_acceder:active {
        transform: scale(0.95);
    }

    .texto_recuperar {
        font-family: regular;
        color: #0c388b;
        font-size: 13px;
    }

    .enlace_recuperar {
        font-family: negrita;
        color: #0c388b;
        text-decoration: none;
        font-size: 13px;
    }

    .enlace_recuperar:hover {
        color: #6666FF;
    }

    footer {
        position: absolute;
        bottom: 0;
        display: flex;
        width: 100%;
        height: 40px;
        justify-content: center;
        align-items: center;
    }

    footer p {
        font-family: regular;
        color: #0c388b;
        font-size: 12px;
    }
}

/* MEDIA QUERY 4: 768px - 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .seccion_login {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        gap: 30px;
        background: rgba(255, 255, 255, 0.95);
    }

    .volver {
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .volver img {
        width: 25px;
        height: 25px;
    }

    .logo_azul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .isotipo_azul {
        display: flex;
        width: 70px;
        height: 70px;
        background: #0c388b;
        border-radius: 10px;
        justify-content: center;
        align-items: center;
    }

    .isotipo_azul img {
        width: 48px;
        height: 48px;
    }

    .logo_azul h3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: negrita;
        color: #0c388b;
        font-size: 20px;
        text-align: center;
    }

    .logo_azul h3 b {
        font-family: regular;
        font-size: 14px;
        font-weight: lighter;
    }

    h1 {
        font-family: negrita;
        color: #0c388b;
        font-size: 25px;
        text-align: center;
    }

    form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .campo_datos {
        display: flex;
        flex-direction: column;
        width: 400px;
        border: 1px solid #cccccc;
        border-radius: 20px;
        align-items: center;
    }

    .campo_datos label {
        display: flex;
        width: 100%;
        height: 40px;
        position: relative;
    }

    .campo_bg {
        position: absolute;
        inset: 0;
        background: #fff;
        border: 1px solid rgba(12, 56, 139, 0.3);
        z-index: -1;
        pointer-events: none;
        box-shadow: rgba(33, 50, 66, 0.2) 0px 1px 3px;
        border-radius: 30px;
    }

    input {
        font-family: regular;
        color: #0c388b;
        font-size: 15px;
        width: 100%;
        height: 100%;
        background: none;
        border: none;
        padding: 0 20px;
    }

    input:focus {
        outline: none;
    }

    input:focus~.campo_bg {
        border: 1px solid #0c388b;
        background: transparent;
    }

    ::placeholder {
        font-family: regular;
        color: #0c388b;
        font-size: 15px;
    }

    .contenedor_boton {
        display: flex;
        justify-content: center;
    }

    .boton_acceder {
        display: flex;
        width: 180px;
        height: 30px;
        background: linear-gradient(to right, #0c388b, #3434d9);
        border-radius: 30px;
        border: none;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        overflow: hidden;
        position: relative;
    }

    .boton_acceder h2 {
        font-family: regular;
        font-size: 12px;
        color: #fff;
        z-index: 10;
        position: relative;
    }

    .boton_acceder:hover {
        background: linear-gradient(to right, #3434d9, #0c388b);
    }

    .boton_acceder:active {
        transform: scale(0.95);
    }

    .texto_recuperar {
        font-family: regular;
        color: #0c388b;
        font-size: 13px;
    }

    .enlace_recuperar {
        font-family: negrita;
        color: #0c388b;
        text-decoration: none;
        font-size: 13px;
    }

    .enlace_recuperar:hover {
        color: #6666FF;
    }

    footer {
        position: absolute;
        bottom: 0;
        display: flex;
        width: 100%;
        height: 40px;
        justify-content: center;
        align-items: center;
    }

    footer p {
        font-family: regular;
        color: #0c388b;
        font-size: 12px;
    }
}

/* MEDIA QUERY 5: 481px - 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .seccion_login {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        gap: 30px;
        background: rgba(255, 255, 255, 0.95);
    }

    .volver {
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .volver img {
        width: 22px;
        height: 22px;
    }

    .logo_azul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .isotipo_azul {
        display: flex;
        width: 60px;
        height: 60px;
        background: #0c388b;
        border-radius: 8px;
        justify-content: center;
        align-items: center;
    }

    .isotipo_azul img {
        width: 40px;
        height: 40px;
    }

    .logo_azul h3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: negrita;
        color: #0c388b;
        font-size: 16px;
        text-align: center;
    }

    .logo_azul h3 b {
        font-family: regular;
        font-size: 12px;
        font-weight: lighter;
    }

    h1 {
        font-family: negrita;
        color: #0c388b;
        font-size: 15px;
        text-align: center;
    }

    form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .campo_datos {
        display: flex;
        flex-direction: column;
        width: 350px;
        border: 1px solid #cccccc;
        border-radius: 20px;
        align-items: center;
    }

    .campo_datos label {
        display: flex;
        width: 100%;
        height: 40px;
        position: relative;
    }

    .campo_bg {
        position: absolute;
        inset: 0;
        background: #fff;
        border: 1px solid rgba(12, 56, 139, 0.3);
        z-index: -1;
        pointer-events: none;
        box-shadow: rgba(33, 50, 66, 0.2) 0px 1px 3px;
        border-radius: 30px;
    }

    input {
        font-family: regular;
        color: #0c388b;
        font-size: 13px;
        width: 100%;
        height: 100%;
        background: none;
        border: none;
        padding: 0 20px;
    }

    input:focus {
        outline: none;
    }

    input:focus~.campo_bg {
        border: 1px solid #0c388b;
        background: transparent;
    }

    ::placeholder {
        font-family: regular;
        color: #0c388b;
        font-size: 13px;
    }

    .contenedor_boton {
        display: flex;
        justify-content: center;
    }

    .boton_acceder {
        display: flex;
        width: 180px;
        height: 30px;
        background: linear-gradient(to right, #0c388b, #3434d9);
        border-radius: 30px;
        border: none;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        overflow: hidden;
        position: relative;
    }

    .boton_acceder h2 {
        font-family: regular;
        font-size: 12px;
        color: #fff;
        z-index: 10;
        position: relative;
    }

    .boton_acceder:hover {
        background: linear-gradient(to right, #3434d9, #0c388b);
    }

    .boton_acceder:active {
        transform: scale(0.95);
    }

    .texto_recuperar {
        font-family: regular;
        color: #0c388b;
        font-size: 13px;
    }

    .enlace_recuperar {
        font-family: negrita;
        color: #0c388b;
        text-decoration: none;
        font-size: 13px;
    }

    .enlace_recuperar:hover {
        color: #6666FF;
    }

    footer {
        position: absolute;
        bottom: 0;
        display: flex;
        width: 90%;
        height: 30px;
        justify-content: center;
        align-items: center;
    }

    footer p {
        font-family: regular;
        color: #0c388b;
        font-size: 11px;
        text-align: center;
    }
}

/* MEDIA QUERY 6: 320px - 480px */
@media (min-width: 320px) and (max-width: 480px) {
    .seccion_login {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        gap: 15px;
        background: rgba(255, 255, 255, 0.95);
    }

    .volver {
        position: absolute;
        top: 15px;
        left: 15px;
    }

    .volver img {
        width: 20px;
        height: 20px;
    }

    .logo_azul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .isotipo_azul {
        display: flex;
        width: 50px;
        height: 50px;
        background: #0c388b;
        border-radius: 8px;
        justify-content: center;
        align-items: center;
    }

    .isotipo_azul img {
        width: 35px;
        height: 35px;
    }

    .logo_azul h3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: negrita;
        color: #0c388b;
        font-size: 14px;
        text-align: center;
    }

    .logo_azul h3 b {
        font-family: regular;
        font-size: 10px;
        font-weight: lighter;
    }

    h1 {
        font-family: negrita;
        color: #0c388b;
        font-size: 15px;
        text-align: center;
    }

    form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .campo_datos {
        display: flex;
        flex-direction: column;
        width: 300px;
        border: 1px solid #cccccc;
        border-radius: 20px;
        align-items: center;
    }

    .campo_datos label {
        display: flex;
        width: 100%;
        height: 40px;
        position: relative;
    }

    .campo_bg {
        position: absolute;
        inset: 0;
        background: #fff;
        border: 1px solid rgba(12, 56, 139, 0.3);
        z-index: -1;
        pointer-events: none;
        box-shadow: rgba(33, 50, 66, 0.2) 0px 1px 3px;
        border-radius: 30px;
    }

    input {
        font-family: regular;
        color: #0c388b;
        font-size: 13px;
        width: 100%;
        height: 100%;
        background: none;
        border: none;
        padding: 0 20px;
    }

    input:focus {
        outline: none;
    }

    input:focus~.campo_bg {
        border: 1px solid #0c388b;
        background: transparent;
    }

    ::placeholder {
        font-family: regular;
        color: #0c388b;
        font-size: 13px;
    }

    .contenedor_boton {
        display: flex;
        justify-content: center;
    }

    .boton_acceder {
        display: flex;
        width: 180px;
        height: 30px;
        background: linear-gradient(to right, #0c388b, #3434d9);
        border-radius: 30px;
        border: none;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        overflow: hidden;
        position: relative;
    }

    .boton_acceder h2 {
        font-family: regular;
        font-size: 12px;
        color: #fff;
        z-index: 10;
        position: relative;
    }

    .boton_acceder:active {
        transform: scale(0.95);
    }

    .texto_recuperar {
        font-family: regular;
        color: #0c388b;
        font-size: 13px;
    }

    .enlace_recuperar {
        font-family: negrita;
        color: #0c388b;
        text-decoration: none;
        font-size: 13px;
    }

    footer {
        position: absolute;
        bottom: 0;
        display: flex;
        width: 90%;
        height: 45px;
        justify-content: center;
        align-items: center;
    }

    footer p {
        font-family: regular;
        color: #0c388b;
        font-size: 11px;
        text-align: center;
    }
}