﻿@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');


.form1 {
    background-color: white;
    width: 100%;
    border-radius: 8px;
    padding: 20px 40px;
    box-shadow: 0 10px 25px rgb(219,175,110, .2);
}

.title1 {
    font-size: 50px;
    margin-bottom: 50px;
}

.inputContainer {
    position: relative;
    height: 60px;
    width: 100%;
    margin-bottom: 17px;
}

.input {
    position: absolute;
    top: 0px;
    left: -1px;
    height: 100%;
    width: 100%;
    border: 1px solid #003b95;
    border-radius: 7px;
    font-size: 14px;
    padding: 0 20px;
    outline: none;
    background: none;
    z-index: 1;
    color: black;
    margin-top: 4px;
}


.label {
    position: absolute;
    top: -9px;
    left: 6px;
    /* padding: 0 4px; */
    background-color: white;
    color: black;
    /*color: #DADCE0;*/
    font-size: 14px;
    transition: 0.5s;
    z-index: 0;
}

::placeholder {
    color: black;
}


.input:focus + .label {
    top: -7px;
    left: 3px;
    z-index: 10;
    font-size: 14px;
    font-weight: 600;
    color: #DBAF6E;
}

.input:not(:placeholder-shown) + .label {
    top: -7px;
    left: 3px;
    z-index: 10;
    font-size: 14px;
    font-weight: 600;
}

.input:focus {
    border: 2px solid #DBAF6E;
}

.ui-helper-hidden-accessible {
    display: none;
}

/* Fondo CuidaMed a pantalla completa: usar en body (portal sin master) o en un contenedor principal */
.fondo-cuidamed-pagina {
    background-color: #eef5f7;
    background-image: url("../Imagenes/fondoCuidamed.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    box-sizing: border-box;
}

/* Portal proveedor sin MasterPage: evitar hueco del menú y fondo blanco de Bootstrap */
body.portal-proveedor-page {
    padding-top: 0;
}

/*
   Cuando el fondo va en body, pintarlo en una capa fija al tamaño del viewport (100% × 100vh)
   para que no quede tapado por el fondo blanco del body ni por el contenido del formulario.
*/
body.fondo-cuidamed-pagina {
    min-height: 100vh;
    background-image: none;
    background-color: transparent;
}

body.fondo-cuidamed-pagina::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 0;
    pointer-events: none;
    background-color: #eef5f7;
    background-image: url("../Imagenes/fondoCuidamed.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

body.fondo-cuidamed-pagina > form {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .fondo-cuidamed-pagina {
        background-attachment: scroll;
    }
}
