@import url("https://fonts.cdnfonts.com/css/fs-elliot-pro");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "FS Elliot Pro", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}
body .container {
  height: auto;
  width: 720px;
}
body .container section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #ffffff;
  border: rgba(25, 59, 101, 0.0862745098) 1px solid;
  border-radius: 12px;
  width: 100%;
  gap: 24px;
}
body .container section header {
  width: 100%;
  padding: 24px 24px 24px 0px;
  border-bottom: rgba(25, 59, 101, 0.0862745098) 1px solid;
}
body .container section header h1 {
  font-size: 24px;
  font-weight: 700;
  color: #193b65;
  padding: 0 32px;
}
body .container section form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 24px;
}
body .container section form .form-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
}
body .container section form .form-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
body .container section form .form-col label {
  font-size: 16px;
  font-weight: 700;
  color: #3b4358;
  margin-bottom: 12px;
}
body .container section form .form-col input,
body .container section form .form-col select {
  width: 100%;
  height: 52px;
  border-radius: 6px;
  border: 1px solid #d6deeb;
  padding: 0 16px;
  font-size: 18px;
  font-weight: 400;
  color: #263348;
}
body .container section form .form-col .password-container {
  position: relative;
  width: 100%;
}
body .container section form .form-col .password-container .fa-eye,
body .container section form .form-col .password-container .fa-eye-slash {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}
body .container section form > *,
body .container section .drop-down-btn > * {
  padding: 0 32px;
}
body .container section .drop-down-menu {
  width: 100%;
}
body .container section .drop-down-menu .drop-down-btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  width: 100%;
  cursor: pointer;
}
body .container section .drop-down-menu .drop-down-btn h2 {
  font-size: 16px;
  font-weight: 700;
  color: #193b65;
}
body .container section .drop-down-content {
  display: none;
  background-color: #f0f5fa;
  width: 100%;
  height: 100%;
  padding: 32px 0;
  border: rgba(25, 59, 101, 0.0862745098) 1px solid;
  box-shadow: 0 4px 8px rgba(201, 212, 227, 0.4) inset;
  transition: max-height 0.3s ease-in-out;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}
body .container section .show {
  display: block;
}
body .container section .arrow {
  border: solid rgba(25, 59, 101, 0.0862745098);
  border-width: 0 3px 3px 0;
  margin-right: 32px;
  display: inline-block;
  padding: 3px;
}
body .container section .down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
body .container section .up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}/*# sourceMappingURL=styles.css.map */