

.container {
  margin: 40px auto;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 0 30px #00000033;
  overflow: hidden;
  padding-bottom: 20px;
}

.container img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    float: left;
}

.form-box {
  background: #fff;
  color: #333;
  padding-top: 20px;
}

.input-box{
    position: relative;
    margin: 20px 0;
}

input{
    width: 100%;
    padding: 13px 50px 13px 20px;
    background: #eee;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

input::placeholder{
    color: #888;
    font-weight: 400;

}

.input-box i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.logo{
    max-width: 150px;
    height: 50px;
}