* {
  box-sizing: border-box;
}

.page_wrapper {
  position: absolute;
  height: 1000px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: scroll;
  background-color: #253385;
  /* background-image: conic-gradient(to right bottom, #00decf, #32c8e7, #169fee); */
  background-image: linear-gradient(to right bottom, #00decf, #32c8e7, #169fee);
  background-size: 200%;
}



.registration_area_outside {
  height: fit-content;
  width: 80%;
  max-width: 600px;
  background: none;
  border-radius: 20px;
  padding: 10px;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 120px 60px auto;
  grid-template-areas:
    "logo"
    "wlc"
    "info"
    "form";
  grid-row-gap: 0.5vw;
  grid-column-gap: 10px;
  justify-content: center;
  align-items: center;
  /* background-color: white; */

  background: linear-gradient(
    to right bottom,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.6)
  );
  /* box-shadow: rgba(60, 64, 67, 0.4) 0 1px 2px 0, */
    /* rgba(60, 64, 67, 0.2) 0 1px 3px 1px; */
}

.logo_dlb {
  grid-area: logo;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  background-image: linear-gradient(to right bottom, #00decf, #32c8e7, #169fee);
  /* background: linear-gradient(to right, #00decf, #32c8e7, #169fee); */
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  flex-direction: column;
  row-gap: 2px;
  padding: 0;
  box-shadow: rgba(60, 64, 67, 0.4) 0 2px 3px 0, rgba(60, 64, 67, 0.2) 0 2px 4px;
}

.logo_dlb img {
  width: 100%;
  height: 100%;
}

.welcome_txt {
  grid-area: wlc;
  width: 100%;
  font-family: lato, sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  font-style: normal;
  display: inline-block;
  text-align: center;
  color: #07496ee3;
}

.info_txt {
  grid-area: info;
  width: 100%;
  font-family: lato, sans-serif;
  font-weight: 10;
  font-size: 1rem;
  font-style: normal;
  display: inline-block;
  text-align: center;
  color: #07496ee3;
}

.registration_form {
  grid-area: form;
  display: flex;
  flex-direction: column;
}

a,
p,
label {
  font-family: lato, sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  font-style: normal;
  color: #07496ee3;;
  text-decoration: none;
}

label {
  margin-left: 5px;
}

a {
  color: #032d46e3;
}

a,
p {
  text-align: center;
}

input[type="text"],
#password_new, #password_new_rep, #password_old {
  width: 100%;
  height: 35px;
  padding-left: 10px;
  margin-bottom: 10px;
  border: none;
  display: inline-block;
  border-radius: 10px;
  box-shadow: rgba(60, 64, 67, 0.4) 0 2px 3px 0, rgba(60, 64, 67, 0.2) 0 2px 4px;
  background: white;
  font-family: lato, sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  font-style: normal;
  color: #1f2b6b;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

#password_new, #password_old {
  width: calc(100% - 70px);
}

input[type="text"]:focus,
#password_new, #password_old:focus {
  border: none;
  outline: none;
  background-color: white;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.submit_btn {
  width: 100%;
  padding: 5px;
  bottom: 0;
  display: inline-block;
  background: rgb(71, 196, 71);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: #032d46e3;
  cursor: pointer;
  box-shadow: rgba(60, 64, 67, 0.4) 0 2px 3px 0, rgba(60, 64, 67, 0.2) 0 2px 4px;
}

.submit_btn:hover {
  color: white;
  background-color: rgb(62, 133, 62);
  /* background: linear-gradient(
    to right bottom,
    rgba(50, 201, 231, 0.5),
    rgba(22, 159, 238, 0.2)
  ); */
}

.password_container {
  display: inline-flex;
  flex-direction: row;
  width: 100%;
}

.visibility_toggle_btn {
  display: inline-flex;
  position: relative;
  width: 60px;
  height: 48px;
  padding: 15px 15px 15px 15px;
  border-radius: 10px;
  background: inherit;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-left: 10px;
  cursor: pointer;
}

.visibility_toggle_btn_interior {
  font-family: lato, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  font-style: normal;
  color: grey;
  margin: 0 0 8px 0;
}

#visisbility_checkbox {
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
}

.footer {
  /*position: absolute;*/
  bottom: 50px;
}

#visisbility_checkbox:checked + .visibility_toggle_btn_interior {
  color: black;
}

/*________MOBILE_VIEWPORT___________*/
@media screen and (max-width: 820px) {
  .registration_area_outside {
    width: 90%;
    height: auto;
  }
}

@media screen and (max-height: 1810px) {
  .registration_area_outside {
    top: 20px;
  }
}
