* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif; /* Corrigido para 'Poppins' */
}

 body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgba(255, 255, 255, 0.842);  /*Cor de fundo */
    background-size: cover;
    background-position: center;
}

.container {
    width: 420px;/*width: 90%;*/
    background-color:  rgba(0, 0, 255, 0.842); /*transparent;*/
    border: 5px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    color: white;
    padding: 30px 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    margin: 0 auto;
}

.container h1 {
    font-size: 36px;
    text-align: center;
}

.input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    outline: none;
    font-size: 16px;
    color: white;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color: rgba(255, 255, 255, 0.863);
}

/* ICON SENHA */
.input-box i {
    position: absolute;
    right: 20px;
    top: 25%;
    font-size: 20px;
}

/* LEMBRAR SENHA */
.remember-forgot {
    display: flex;
    justify-content: space-between;
    margin: -15px 0 16px;
}

.remember-forgot nav {
    accent-color: #ffffff;
    margin-right: 4px;
}

/* ENTRAR */
.login {
    width: 100%;
    height: 50px;
    background-color: white;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.login:hover {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    color: white;
    transform: scale(1.10);
    transition: 0.2s;
    position: relative;
}

/* RESPONSIVO CELULAR*/
@media screen and (max-width: 468px) {
     .container {
        width: 100%;  /*largura da grade*/ 
        padding: 30px;
    }

    .container h1 {
        font-size: 28px;
    }

    .input-box input {
        font-size: 14px; /* fonte do input*/  
    }

    .login {
        height: 45px; /*altura do botão */
        font-size: 14px;  /*fonte do botão*/
    }
} 
