@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif
}    

.logo {
    width: 100%;
    text-align: center;
}
body {
    min-height: 100vh;
    background: linear-gradient(to bottom, #E6DDDB, #004683)
}
    
.wrapper {
    max-width: 450px;
    margin: 50px auto;
    padding: 20px 30px;
    min-height: 300px;
    background-color: #ffffff27;
    border-top: 1px solid #ffffff6e;
    border-left: 1px solid #ffffff6e;
    border-radius: 15px;
    /*Tamaño*/
    height: 770px;
}

.wrapper .h5 {
    color: #ddd;
}

.wrapper .form-group {
    border-bottom: 1px solid #ccc;
    margin-bottom: 1.5rem;
}

.wrapper .form-group:hover {
    border-bottom: 1px solid #eee;
}

.wrapper .form-group .icon {
    color: #e8e8e8
}

.wrapper .form-group .form-control {
    background: inherit;
    border: none;
    border-radius: 0px;
    box-shadow: none;
    color: #e9e9e9;
}

.wrapper .form-group input::placeholder {
    color: #ccc;
}

.wrapper .form-group input:focus::placeholder {
    opacity: 0;
}

.wrapper .form-group .fa-phone {
    transform: rotate(90deg);
}

.wrapper .option {
    color: #ccc;
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none;
}

.wrapper .option:hover {
    color: #eee;
}

.wrapper .option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.wrapper .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: inherit;
    border: 2px solid #ccc;
    border-radius: 2px;
}

.wrapper .option input:checked~.checkmark {
    transition: 300ms ease-in-out all;
}

.wrapper .checkmark:after {
    content: "\2713";
    position: absolute;
    display: none;
    font-weight: 600;
    color: #FFF;
    font-size: 0.9rem;
}

.wrapper .option input:checked~.checkmark:after {
    display: block
}

.wrapper .option .checkmark:after {
    left: 2px;
    top: -4px;
    width: 5px;
    height: 10px;
}

.wrapper .btn.btn-primary {
    position: relative;
    color: #eee;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    border: 1px solid #ddd;
    background-color: inherit;
    box-shadow: none;
    overflow: hidden;
}

.wrapper .btn.btn-primary:hover {
    background-color: #b4b4b433;
    color: #fff;
}

.wrapper .terms {
    color: #bbb;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 45px;
}

.wrapper .terms a {
    text-decoration: none;
    color: #eee;
}

.wrapper .terms a:hover {
    color: #fff;
}

.wrapper .connect {
    position: relative;
}

.wrapper .connect::after {
    content: "RECUERDE";
    font-weight: bold;
    position: absolute;
    top: 20px; /*here*/
    width:80px;
    left: 39%;
    text-align: center;
    color: #eee;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.315);
    /*background-color: #1f5588*/
}
@media(max-width: 460px) {
    .wrapper {
        margin: 15px;
        padding: 20px
    }

    .wrapper .connect::after {
            left: 38%
    }
}

@media(max-width: 345px) {
    .wrapper .connect::after {
        left: 32%
    }
}

#errmsg{
    color: white;
}

.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
    background-color: #023e8a!important;
    font-weight : bold ;
}

/*Cambios Menú*/
:root{
    --menu-color: #c3c0c0;
    --link-color: #4caf50;
}

.menu-container {
    position: fixed;
    top: 0;
    /*left: -250px; // Sin esto el menú aparece mostrado por defecto*/
    left: 0px; /*Por defecto aparece le menú mostrado pero con suspropiedades de ocultarse*/
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 260px;
    height: 100%;
    background-color: var(--menu-color);
    transition: left 0.3s ease;
}

.menu-container__link {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 70px;

    background-color: var(--link-color);
    border-radius: 7px;
    text-decoration: none !important;
    width: 230px;
    height: 30px;
    padding: 20px;
    color: white !important;
}

.menu-toggle {
    position: fixed;
    z-index: 3 !important;
    left: 20px;
    top: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 2;

    width: 30px;
    height: 30px;

    background-color: white;
    border-radius: 50%;
}
