* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 15px;
  text-decoration: none;
  list-style: none;
}

@font-face {
  font-family: Segoe UI;
  src: url("./SEGOEUI.TTF");
}

body {
  height: 100vh;
  width: 100vw;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  align-items: center;
  background: rgb(233,221,219);
  background: linear-gradient(80deg, rgba(233,221,219,1) 0%, rgba(220,229,220,1) 55%, rgba(233,221,219,1) 100%);
}

main {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 440px;
  width: calc(100% - 40px);
  padding: 44px;
  margin-bottom: 28px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  min-width: 320px;
  min-height: 338px;
  overflow: hidden;
  position: relative;
  height: max-content;
}

header h1 {
  font-size: 23px;
  font-weight: 600;
  color: rgb(27, 27, 27);
  padding: 13px 0;
}

.email_form{
  transition: .4s all ease;
}
.password_form{
  transition: .4s all ease-out;
}

#email,
#password {
  padding: 4px 8px;
  border-style: solid;
  border-width: 2px;
  border-color: rgba(0, 0, 0, 0.4);
  background-color: rgba(255, 255, 255, 0.4);
  height: 32px;
  height: 2rem;
  padding: 6px 10px;
  border-width: 1px;
  border-color: #666;
  border-color: rgba(0, 0, 0, 0.6);
  height: 36px;
  outline: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  background-color: transparent;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  padding-left: 0;
  width: 100%;
  outline: none;
  margin-bottom: 16px;
}

form a,
form p{
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

form p{
  color: rgb(27, 27, 27);
}

form a{
  color: #0067B8;
}

form a:hover{
  color: rgb(153, 153, 153);
  text-decoration: underline;
}

.issue{
  display: block;
  padding-bottom: 16px;
}

.continue_btn,
.submit_btn{
  width: 108px;
  height: 32px;
  background-color: #0067B8;
  border: none;
  align-self: flex-start;
  margin-top: 16px;
  color: white;
  cursor: pointer;
}

.issue2{
  padding: 16px 0;
  text-align: right;
}

.button_cont{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
}

.form_containers{
  position: relative;
  overflow: hidden;
  height: max-content;
}

form.hidden{
  position: absolute;
  transform: translateX(110%);
  top: 0;
}

.dots_container{
  display: none;
  position: absolute;
  margin: 5px;
  top: -5px;
  left: -10px;
}

span.dot{
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0067B8;
  transform: translateX(-50%);
  animation-timing-function: ease;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  transition: all .5s ease;
  animation-name: load;
}

span.dot:nth-child(2){
  animation-delay: 100ms;
}
span.dot:nth-child(3){
  animation-delay: 200ms;
}
span.dot:nth-child(4){
  animation-delay: 300ms;
}
span.dot:nth-child(5){
  animation-delay: 400ms;
}
span.dot:nth-child(6){
  animation-delay: 500ms;
}

@keyframes load {
  0%{
    left: 0;
  } 45%{
    left: 50%;
  } 75%{
    left: 50%;
  } 100%{
    left: 100%;
  }
}