body {
  background-image: url(/resources/doodles-bg.jpg);
  background-repeat: repeat;
  background-size: contain;
  justify-content: center;
}

.container {
  background: rgba(30, 116, 187, 0.4);
  backdrop-filter: blur(3px);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 90vh;
  max-width: 500px;
  width: 100%;
  padding: 10px;
  position: relative;
}
.container > img {
  background: #ececec;
  border: 1px solid #c1c1c1;
  border-radius: 100%;
  display: block;
  object-fit: contain;
  height: 150px;
  width: 150px;
  padding: 10px;
  position: absolute;
  left: -35px;
  bottom: -25px;
}

@media (max-width: 768px) {
  .container {
    border-radius: 0;
    max-width: 100%;
  }
  .container > img {
    left: -10px;
    bottom: -10px;
  }
}

form {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
}

/*<><><><><><><><><><>*/

header > img {
  box-shadow: 0 0 5px #BDBDBD;
  border-radius: 100%;
  display: block;
  margin: auto;
  object-fit: contain;
  height: 200px;
  width: 200px;
  margin-top: 10px;
}

header > h1 {
  border-radius: 25px 5px 25px 5px;
  background: rgba(255, 255, 255, 0.7);
  color: rgb(30, 116, 187);
  display: block;
  font: bold 1.1em "Prosto One";
  text-align: center;
  margin: 20px auto;
  padding: 5px 40px;
  width: fit-content;
}

/*<><><><><><><><><><>*/

.type-selection {
  align-items: center;
  border-top: 2px solid #F2F2F2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: scale(1);
  transition: all 0.2s ease-in;
  padding: 20px;
  height: 80%;
  width: 80%;
  position: relative;
}

.type-selection > b {
  font: bold 14px "Prosto One";
  display: block;
  position: absolute;
  top: 15px;
}

/*..........*/

.inputbox {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  transform: translateY(10px);
}

.inputbox p {
  background: white;
  border-radius: 10px;
  display: table;
  font: bold 12px comfortaa;
  margin-bottom: 3px;
  padding: 2px 5px;
  width: fit-content;
}

.inputbox > input {
  border-radius: 15px;
  display: block;
  font: bold 14px comfortaa;
  padding: 7px 10px;
  outline: none;
}
