@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');



/* Puts the form in the center both horizontally and vertically. Sets its height to 100% of the viewport's height */


.form{
    width: 90%;
    margin: 0 auto;
}

.title {
    width: 90%;
    margin: 0 auto;
    padding: 15px 0;
    font-size: 25px;
    color: #1c148d;
    text-align: center;
}

.inputContainer {
    position: relative;
    height: 45px;
    margin-bottom: 15px;
    display: flex;
}

.input {
    height: 100%;
    width: 100%;
    border: 1px solid #6f6d92;
    font-size: 16px;
    padding: 0 20px;
    outline: none;
    background: none;
    z-index: 1;
}
.input:focus {
    border-bottom: 1px solid #1c148d;
}
/* Hide the placeholder texts (a) */

::placeholder {
    color: transparent;
}

/* Styling text labels */

.label {
    position: absolute;
    top: 15px;
    padding: 0 4px;
    background-color: white;
    color: #6f6d92;
    font-size: 16px;
    transition: 0.5s;
    z-index: 0;
}

.submitBtn {
    width: 250px;
    display: block;
    padding: 15px;
    border: none;
    background-color: #19218f;
    color: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin: 0 auto;
    margin-top: 10px;
}
.submitBtn:hover {
    background-color: #1c148d;
    color: #ffffff;
}

.input:focus+.label {
    top: -7px;
    left: 3px;
    z-index: 10;
    font-size: 14px;
    font-weight: 600;
    color: #1c148d;
}


.input:not(:placeholder-shown)+.label {
    top: -7px;
    left: 3px;
    z-index: 10;
    font-size: 14px;
    font-weight: 600;
}
.sticker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #6f6d92;
    margin-left: 90%;
}

.tama{
    font-size: 20px;
}

.restaurar{
    display: block;
    text-align: center;
    color: #19218f;
    margin-top: 15px;
    margin-left: 20px;
    font-size: 15px;
}
.restaurar:hover{
    text-decoration: underline;
}

@media (min-height: 1000px) {
    .restaurar{
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .submitBtn {
        width: 100px;
        display: block;

        border: none;
        background-color: #19218f;
        color: #ffffff;
        border-radius: 6px;
        cursor: pointer;
        font-size: 13px;
        margin: 0 auto;
        margin-top: 10px;
    }
}

