*{
    box-sizing: border-box;
}

html, body{
    margin: 0;
}

body{
    background-image: url('./images/bg_user.png');
    background-repeat: no-repeat;
    position: relative;
}

.container-wrapper{
    height: 544px;
    width: 989px;
    background-color: #fff;
    border-radius: 22px;
    margin: auto;
    margin-bottom: 50px;
    box-shadow: 6px 13px 17px rgb(0,0,0,0.25);
}

.formm-img{
    height: 214px;
    width: 210px;
}

.username{
    border: 0px;
    border-bottom: 1px solid #5A3e37;
    border-radius: 0px;
    text-indent: 10px;
}

.username:focus{
    border: none;
    outline: none;
    border-bottom: 1px solid #5A3e37;
}

.under-line{
    border-bottom: 1px solid #5A3e37;
    display: flex;
    justify-content: space-around;
}

.pass{
    border: none;
    width: 60%;
    background-color: transparent;
    margin-left: -11%;
}

.pass:focus{
    border: none;
    outline: none;
}

.form-eye{
    margin-right: -10%;
    cursor: pointer;
}

.form-forget{
    color: rgba(90, 62, 55, 0.71);
    margin-left: auto;
    text-decoration: none;
}

.form-forget:hover{
    color: rgba(90, 62, 55, 0.41);
}

.login{
    background-color: #5A3E37;
    color: #fff;
    border-radius: 11px;
}

.login:hover{
    background-color: rgba(90, 62, 55, 0.81);
    color: #fff;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .container-wrapper {
        width: auto; 
        margin: 20px 20px 50px 20px; 
    }
    
    form{
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }

    .form--box{
        padding-top: 20px;
    }
  }
  
  /* Small devices (portrait tablets and large phones, 600px and up) */
  @media only screen and (min-width: 600px) {
    .container-wrapper {
        width: auto;
    }
  }
  
  /* Medium devices (landscape tablets, 768px and up) */
  @media only screen and (min-width: 768px) {
    .container-wrapper{
        width: 750px; 
        margin-top: 7%;
    }

    .form--img{
        height: 500px;
        width: 500px;
        border-radius: 22px;
        background-image: url('./images/user_bg_form.gif');
    }

    .form-logo{
        width: 220px;
        height: 220px;
        margin-left: 20%;
        margin-top: 10%;
        margin-bottom: -10%;
    }

    .username, .under-line{
        background-color: transparent;
        width: 270px;
        margin-left: auto;
    }

    .under-line{
        border-bottom: 1px solid #5A3e37;
        display: flex;
        justify-content: space-around;
    }
    
    .pass{
        border: none;
        width: 75%;
        background-color: transparent;
        margin-left: -9%;
    }
    
    .pass:focus{
        border: none;
        outline: none;
    }

    
    .form-eye{
        margin-left: -30px;
        cursor: pointer;
    }
    .login{
        width: 270px;
        margin-left: auto;
    }

    form{
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 45px;
    }

    
    .form-text{
        margin-left: 22%;
    }
    
  } 
  
  /* Large devices (laptops/desktops, 992px and up) */
  @media only screen and (min-width: 992px) {
    .container-wrapper {
        width: 989px; 
        margin-top: 7%;
    }

    .form--img{
        height: 500px;
        width: 500px;
        border-radius: 22px;
        background-image: url('./images/user_bg_form.gif');
    }

    form{
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 45px;
    }

    .form-logo{
        margin-left: 15px;
    }

    .username, .login, .under-line{
        width: 405px;
        margin: auto;
    }

    .under-line{
        border-bottom: 1px solid #5A3e37;
        display: flex;
        justify-content: space-around;
    }
    
    .pass{
        border: none;
        width: 75%;
        background-color: transparent;
        margin-left: -9%;
    }
    
    .pass:focus{
        border: none;
        outline: none;
    }

    
    .form-eye{
        margin-left: -30px;
        cursor: pointer;
    }

    .form-forget{
        margin-right: 6%;
    }

    .form-text{
        margin-left: 1%;
    }
  } 
  
  /* Extra large devices (large laptops and desktops, 1200px and up) */
  @media only screen and (min-width: 1200px) {
    .form--img{
        height: 500px;
        width: 500px;
        border-radius: 22px;
        background-image: url('./images/user_bg_form.gif');
    }
  }