html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/*body {
    background: #ecf0f3;
}*/
    body::before {
        margin-top: 15px;
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("../imgs/fondo.jpg");
        /* no-repeat center center/cover;*/
        opacity: 0.05;
        z-index: -1;
    }

.wrapper {
    max-width: 350px;
    min-height: 500px;
    margin: 23px auto;
    padding: 23px;
    background-color: #ecf0f3;
    border-radius: 15px;
    box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
}

.logo {
    width: 183px;
    margin: auto;
}

    .logo img {
        /*width: 100%;
        height: 80px;*/
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 0px 0px 3px #5f5f5f, 0px 0px 0px 5px #ecf0f3, 8px 8px 15px #a7aaa7, -8px -8px 15px #fff;
    }

.wrapper .name {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1.3px;
    padding-left: 10px;
    color: #555;
}

.wrapper .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 1.2rem;
    color: #666;
    padding: 10px 15px 10px 10px;
    /* border: 1px solid red; */
}

.wrapper .form-field {
    padding-left: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
}

    .wrapper .form-field .fas {
        color: #555;
    }

.wrapper .btn {
    box-shadow: none;
    width: 100%;
    height: 40px;
    background-color: #03A9F4;
    color: #fff;
    border-radius: 25px;
    box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #fff;
    letter-spacing: 1.3px;
}

    .wrapper .btn:hover {
        background-color: #039BE5;
    }

.wrapper a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #03A9F4;
}

    .wrapper a:hover {
        color: #039BE5;
    }

@media(max-width: 380px) {
    .wrapper {
        margin: 30px 20px;
        padding: 40px 15px 15px 15px;
    }
}



.boton-app {
    position: absolute; /*fixed;*/
    top: 13px;
    /*left: 50%;*/
    right: 2px;
    z-index: 1000;
    background-color: #FFF; /*#E4D6B2;*/
    /* color: white; */
    border: none;
    border-radius: 50px;
    padding: 6px;
    margin: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.3s ease;
}

    .boton-app:hover {
        background-color: #eee;
    }

.img-resp {
    width: 32%;
}
/* celulares (xs) m�s chica */
@media (min-width: 768px) {
    .img-resp {
        width: 51%;
    }
}
/* md */
@media (min-width: 992px) {
    .img-resp {
        width: 71%;
    }
}
/* lg */

/* boton ayuda iphone */
#help-icon {
    position: fixed;
    top: 83px;
    right: 6px;
    background: #E4D6B2;
    /*color: white;*/
    font-size: 0.6em;
    padding: 0.6em;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    cursor: default;
    z-index: 1001;
    text-align: center;
    padding: 9px;
    /* width: 46px;
    height: 46px; */
    line-height: 1.2;
}

/* guia de como se instala en iphone */
.pwa-tip {
    position: fixed;
    top: 83px;
    right: 6px;
    background: #E4D6B2;
    /* color: #333; */
    padding: 0.5em;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-size: 0.71em;
    display: none;
}

    .pwa-tip.chrome {
        background: #E4D6B2;
    }