*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: poppins;
}
body{
    background: rgb(247 247 247);
}
div.container2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background-color: rgb(156 156 154 / 81%);
    box-shadow: 0 0 20px 0px rgb(5 5 5 / 88%);
    border-radius: 10%;
    color: unset;
    text-align: center;
    font-size: x-large;
    text-decoration: underline;
}
.developer .image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    left: 0;
    top: 0;
    box-shadow: 0px 0px 15px 0px #eb0e0ed6;
}

div.container{
    padding:10px;
}
/*div.container{*/
/*    position : absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%,-50%);*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    align-items: center;*/
/*    padding: 30px;*/
/*    background-color: rgb(195, 218, 218);*/
/*    box-shadow: 0 0 50px rgb(25, 211, 228);*/
/*}*/
@media only screen and (max-width: 680px) {
div.container2{
    position : absolute;
    top: 50%;
    left: 50%;
    transform: translate(0%,-50%);
    display: block;
    flex-direction: row;
    align-items: center;
    padding: 30px;
    background-color: rgb(42, 234, 234);
    box-shadow: 0 0 50px rgb(25, 211, 228);
    justify-items: center;
}
div.container2 .image{
    width: 150px;
    height: 150px;
    border-radius: 5px;
}
}
div.container2 .image{
    width: 250px;
    height: 250px;
    border-radius: 5px;
}

div.container div.myform{
    width: 250px; 
    margin-right: 30px;  
}

div.container div.myform h3{
    margin-bottom: 30px;    
}

div.container div.myform input{
    width: 100%; 
    border: none;
    outline: none;
    border-radius: 0;  
    border-bottom: 2px solid black;
    margin-bottom: 25px;
    padding: 7px 0;
    margin-right: 30px;
}

.password-container{    
    position: relative;
    width: 100%;
    margin-left: 0;
  }
  .password-container input[type="password"],
  .password-container input[type="text"]{
    width: 100%;
    padding: 12px 36px 12px 12px;
    box-sizing: border-box;
  }
  .fa-eye{
    position: absolute;
    top: 15%;
    right: 4%;
    cursor: pointer;
    color: lightgray;
    color: black;
  }

  
div.container div.myform button{   
    border: none;
    background-color: blue;
    outline: none;
    border-radius: 2px;  
    padding: 7px 12px;
    cursor: pointer;
   
}