.popup {
  width: 60%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.4); */
  display: none;
  position: absolute;
  text-align: center;
  z-index: 99;
}
.popup .popup__content {
  width: 80%;
  overflow: auto;
  padding: 50px;
  background: white;
  color: black;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 99;
}
.popup .popup__content .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  display: block;
}
.popup .popup__content .close span {
  cursor: pointer;
  position: fixed;
  width: 20px;
  height: 3px;
  background: #099ccc;
}
.popup .popup__content .close span:nth-child(1) {
  transform: rotate(45deg);
}
.popup .popup__content .close span:nth-child(2) {
  transform: rotate(135deg);
}

/* button {
  background: #099ccc;
  color: white;
  margin: 30px;
  padding: 5px 30px;
  cursor: pointer;
  border: none;
} */

@import url(https://fonts.googleapis.com/css?family=Roboto);

html {
  font-family: "Roboto", sans-serif;
}

.form__group {
  position: relative;
  padding: 15px 0 0;
  margin-top: 10px;
}

.form__field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d2d2d2;
  outline: 0;
  font-size: 16px;
  color: #212121;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}

.form__field::placeholder {
  color: transparent;
}

.form__field:placeholder-shown ~ .form__label {
  font-size: 16px;
  cursor: text;
  top: 20px;
}

/* label,
.form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 12px;
  color: #9b9b9b;
} */

.inpItems {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inpFields {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 70%;
  margin-bottom: 1.5rem;
}

.inpFields > label {
  margin-bottom: 0.5rem;
}

.inpFields > input {
  padding: 0.8rem;
  width: 100%;
  border: 0.012px solid;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 0.4rem;
}

.form__field:focus ~ .form__label {
  color: #009788;
}

h2#swal2-title {
  font-size: 1.3rem !important;
}

.swal2-icon.swal2-info.swal2-icon-show {
  animation: swal2-animate-error-icon 0.5s;
  font-size: 0.8rem !important;
}

.form__field:focus {
  padding-bottom: 6px;
  border-bottom: 2px solid #009788;
}
