body{

    display: flex;
    
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("/static/assets/image/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.show_password{
    margin-top: -5px;
    margin-bottom: 10px;
    color: #0a65ff;
    cursor: pointer;
    text-align: right;
}

.form-group{
    position: relative;
    
}
.form-group input{
    width: 100%;
    padding: 0.5rem 0.5rem 0.5rem 2.2rem;
    border: 2px solid var(--light-gray);
    outline: none;
    border-radius: 2rem;
    color: var(--black1);
    position: relative;
    
}

.form-group .icon-wrapper{
    content: "ddd";
    width: 2rem;
    height: 100%;
    background-color: var(--light-gray);
    left: 0;
    position: absolute;
    z-index: 2;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.form-group input::placeholder{
    color:  var(--black1);
    opacity: 0.5;
}

.login_wrapper{
    width: 32rem;
    height: 25rem;
    background-color: white;
    border-radius: 1rem;
    padding: 2rem 5rem;
    border: 2px solid  var(--light-gray);
    box-shadow: 0px 0px 0 100vw rgba(0, 0, 0, 0.2);
}

.login_title{
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.erro_message{
    width: 100%;
    text-align: center;
    color: var(--red);
    font-size: 1.375rem;
    margin-top: 0.5rem;
}

.forgot_password-wrapper{
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0 1rem;
}

.forgot_password-link{
    text-decoration: underline;
    color: #3184c0;
    font-size: 0.875rem;
}

.login_button{
    width: 100%;
    padding: 1rem;
    text-transform: uppercase;
    border: none;
    border-radius: 5rem;
    font-size: 1.5rem;
    font-family: 'Nunito', sans-serif;
    color: var(--black1);
    background-color: var(--light-gray);
    cursor: pointer;
}

.login_button:hover{
    background-color: var(--black1);
    color: var(--light-white)
}

@media screen and (max-width:530px) {
    .login_wrapper{
        width: 100%;
        margin-left: 1rem;
        margin-right: 1rem;
        padding-right: 3rem;
        padding-left: 3rem;
    }
}