body {
    background-color: #ccffff;
    color: #000000;
}

#form-container {
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    background-color: #ccffff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


#form__container__header {
    border-radius: 10px 10px 0 0;
    padding: 30px;
    text-align: center;
    background-color: #ff00bf;
    margin: 0;
    font-size: 18px;
    line-height: 0;
}

  #form__content__wrapper{
    padding: 20px;
}

input {
    box-sizing: border-box;
    color: #fff;
    width: 100%;
    margin: 0;
    border: none;
    border-radius: 5px;
    padding: 16px 20px;
    font-size: 15px;
    background-color: #3f434a;
    margin-top: 32px;
  }
 
 
input[type='submit'] {
background-color: #1a1aff;
 
}

.image-container {
    border: solid 2px aliceblue;
    border-radius: 5px;
    box-shadow: 0 0 3px black;
    width: 180px;
    bottom: 80%;
    height: 180px;
    position: absolute;
    top: 2%;
    bottom: 80%; 
    left: 50%;
    transform: translate(-50%, 0)
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
