*{
   padding: 0;
   margin: 0;
   box-sizing: border-box;
   font-family: "ROBOTO", san serif;
}

body{
    background-color: #ffffff;
}

.container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 10px;
    
    background-color: white;
    padding: 30px;
    box-shadow: 0 0 50px darkslategray;
}

.container .myform {
    width: 270px;
    margin-right: 30px;
}

.container .myform h1{
    Color: #1c1c1e;
    margin-bottom: 20px;
}

.container .myform input{
    border: none;
    outline: none;
    border-radius: 0;
    width: 100%;
    border-bottom: 2px solid #1c1c1e;
    margin-bottom: 25px;
    padding: 7px 0;
    font-size: 14px;
}

.container .myform button{
    color: white;
    background-color: #1c1c1e;
    border: none;
    outline: none;
    border-radius: 2px;
    font-size: 14px;
    padding: 12px 12px;
    font-weight: 500;
    cursor: pointer;
}

.container .image img{
    width: 300px;
    background-color: #7ABF44;
}