@import url(https://fonts.google.com/specimen/JetBrains+Mono);

body {
    padding-top: 50px; /* */
    display: flex; /* layout */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('../img/wallpaper-iconmenu/test03.png') no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

/**/
.wrapper {
    width: 80%;/* Largura relativa */
    max-width: 420px;/* Largura máxima */
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: white;
    border-radius: 10px;
    padding: 30px 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*editando Titulo Login tamanho e alinhando ele*/
.wrapper h1 {
    font-size: 36px;
    text-align: center;
    color: white;
}

/* ajustando posicoes da box e icones */
.input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input {
    width: 100%;/*largura da box*/
    height: 100%;/*altura da box*/
    background-color: transparent;/*deixa transparente*/
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-box i {
    position: absolute;
    right: 7px;
    top: 30%;
    transform: translate(-50%);
    font-size: 20px;
}

/* esqueci senha e lembrar-me */
.wrapper .lembrar {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}

.lembrar label input {
    accent-color: #fff;
    margin-right: 3px;
}

.lembrar a {
    color: #fff;
    text-decoration: none;
}

.lembrar a:hover {
    text-decoration: underline;
}

/* estilos botao enviar */
.wrapper .btn {
    width: 100%;
    height: 45px;
    background-color: white;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

/* link de registro */
.wrapper .registro-link,
.login-link {
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 20px;
}

.registro-link p a,
.login-link p a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.registro-link p a:hover,
.login-link p a:hover {
    text-decoration: underline;
}

/* ajuste de posicao do icone validacao do cpf*/
#cpfValidIcon {
    right: 35px;
}

/* centraliza a mensagem de erro */
#mensagemErro {
    text-align: center;
}