form {
  background-color: #fea0bb;
  padding: 20px;
  margin: 2px;
  border-radius: 20px;
}

.logo h1 {
  margin: 0;
  color: #ff005c;
  font-size: 48px;
}

.logo h5 {
  text-align: center;
  color: #0f0f0f;
  margin-bottom: 18px;
  font-weight: 300;
}

.form-floating {
  position: relative;
  margin-bottom: 24px;
}

.form-floating input,
.form-floating textarea {
  width: 100%;
  padding: 16px 12px 12px 12px;
  border: none;
  border-radius: 16px;
  background: #f8e6f0;
  box-shadow: inset 6px 6px 6px #e0bfd5,
              inset -6px -6px 12px #f1f1f1;
  font-size: 16px;
  color: #660033;
  transition: box-shadow 0.3s ease;
}

.form-floating input:focus,
.form-floating textarea:focus {
  box-shadow: inset 2px 2px 5px #e0bfd5,
              inset -2px -2px 5px #f0f0f0;
  outline: none;
}

.form-floating label {
  position: absolute;
  top: 14px;
  left: 16px;
  background-color: #f8e6f0;
  padding: 0 5px;
  color: #999;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.2s ease-out;
}

.form-floating input:focus + label,
.form-floating input:not(:placeholder-shown) + label,
.form-floating textarea:focus + label,
.form-floating textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 12px;
  font-size: 12px;
  color: #c30068;
}

.form button {
  width: 50%;
  padding: 10px;
  background: #c30068;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  color: #f0f0f0;
  font-weight: bold;
  margin-top: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

