@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@160..700&display=swap');

* {
    background-image: url(usuario.jpg);
    background-repeat: repeat;
    background-size: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.cardcadastro {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Readex Pro", sans-serif;
    width: 450px;
    height: 350px;
    display: flex;
    flex-direction: column;
    padding: 50px;
    background-color: rgba(255, 255, 255, );
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    height: 120px;
    width: 120px;
    background-color: transparent;
    position: absolute;
}

.inputs {
    height: auto;
    line-height: 2.5;
    width: 70%;
    border-radius: 20px;
    border-color: tomato;
    background-color: white;
    margin-top: 10px;
    margin-bottom: 10px;
    border: none;
    padding-left: 20px;
}

.inputs::placeholder {
    text-align: center;
}

.inputs:focus {
    outline: none;
    border-color: #1484ba;
    box-shadow: 0 0 10px rgba(20, 132, 186, 0.5);
}

.cardcadastro button {
    height: auto;
    line-height: 2.9;
}

.btn {
    width: 225px;
    height: 100px;
    border: none;
    border-radius: 20px;
    background-color: white;
}

.input-container {
    position: relative;
}

.input-container i {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.inputs {
    padding-right: 90px;
}

.fa-eye:hover {
    cursor: pointer;
}