*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #e6e9fa;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

img,
picture {
  max-width: 100%;
  display: block;
}

.co_title {
  color: #525252;
  font-size: 1.5em;
  margin-bottom: 30px;
}

.auth_separator > span {
  font-size: 0.84em;
  color: #a1a1a1;
  text-transform: uppercase;
}

.aside_side header.logo p {
  font-size: 2em;
  font-weight: 700;
  color: #6f74dd;
}
.aside_side article h1 {
  color: #fff;
  font-size: 1.9em;
}
.aside_side article h1 span {
  font-size: 2.125em;
}
.aside_side article p {
  font-size: 0.75em;
  color: #e6e9fa;
  position: relative;
  z-index: 7;
}

.form_group label {
  color: #a1a1a1;
  font-size: 0.84em;
}
.form_group input {
  font-size: 0.84em;
  font-weight: 700;
  color: #525252;
  text-transform: none;
}

.form-footer {
  color: #a1a1a1;
  font-size: 0.84em;
  text-transform: none;
  margin-top: 25px;
}
.form-footer a {
  color: #3949ab;
}
.form-footer a:hover {
  color: #00227b;
}

.auth_options {
  display: flex;
  gap: 40px;
}
.auth_options .opt_btn {
  border-radius: 4px;
  border: solid 1px #e6e9fa;
  padding: 7px 20px;
  box-shadow: 0px 0px 5px -1px #e6e9fa;
  transition: all 0.3s ease-in-out;
}
.auth_options .opt_btn:hover {
  background-color: #eee;
}
.auth_options .opt_btn a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85em;
  color: #a1a1a1;
}
.auth_options .opt_btn a > img {
  width: 17px;
}

.form_btn {
  width: 100%;
  background-color: #3949ab;
  padding: 10px;
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  border-radius: 6px;
  margin-top: 40px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.form_btn:hover {
  background-color: #00227b;
}

form .form_group {
  border-bottom: solid 1px #e6e9fa;
  padding: 15px 0 5px 5px;
  margin-bottom: 5px;
  position: relative;
}
form .form_group label {
  color: #a1a1a1;
  font-size: 0.87em;
  position: absolute;
  top: 15px;
  left: 5px;
  transition: all 0.3s ease-in-out;
}
form .form_group label.stay-up {
  top: -8px;
}
form .form_group input {
  width: 100%;
}

/*start container*/
.container {
  background-color: #3949ab;
  width: clamp(300px, 80vw, 1200px);
  height: 700px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.container .main_side {
  grid-column: span 7;
  position: relative;
  z-index: 11111;
  background-color: #fff;
  width: clamp(300px, 50vw, 740px);
  padding: 100px;
}
.container .main_side .auth_separator {
  margin: 35px 0 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.container .main_side .auth_separator > span {
  position: relative;
}
.container .main_side .auth_separator > span::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 1px;
  background-color: #a1a1a1;
  top: 50%;
  left: -13px;
  transform: translateY(-50%);
}
.container .main_side .auth_separator > span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 1px;
  background-color: #a1a1a1;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}
.container .aside_side {
  grid-column: span 5;
  overflow: hidden;
}
.container .aside_side header.logo {
  display: flex;
  align-items: center;
}
.container .aside_side header.logo img {
  width: 80px;
}
.container .aside_side article {
  margin: 0 40px;
}
.container .aside_side .hero_image {
  position: relative;
}
.container .aside_side .hero_image img {
  position: absolute;
  top: -100px;
  left: 100px;
  z-index: 5;
  filter: blur(9px);
  transform: scale(1);
  animation: fly 2s infinite alternate-reverse;
}
@keyframes fly {
  from {
    top: -110px;
    transform: scale(1.2);
  }
  to {
    transform: scale(1.1);
    top: -90px;
  }
}

#login_section .left_side {
  border-radius: 0 30px 30px 0;
}

#signup_section .right_side {
  border-radius: 30px 0 0 30px;
}

@media (max-width: 1024px) {
  .auth_options .opt_btn a {
    font-size: 0.6em;
    gap: 5px;
  }
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    height: 100vh;
  }
  .container .main_side {
    grid-column: span 12;
    width: 100%;
    border-radius: 30px 30px 0 0;
    padding: 40px 15px;
  }
  .container .aside_side {
    grid-column: span 12;
  }
  .container .aside_side .hero_image {
    left: 0px;
  }
  #signup_section .left_side {
    order: 1;
  }
  #signup_section .right_side {
    order: 2;
    border-radius: 30px 30px 0 0;
  }
  #login_section .left_side {
    order: 2;
    border-radius: 20px 20px 0 0;
  }
  #login_section .right_side {
    order: 1;
  }
  .right_side .hero_image img {
    left: -100px;
  }
}
@media (max-width: 1300px) {
  .container .main_side {
    padding: 40px 25px;
  }
}
@media (max-width: 375px) {
  .auth_options {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */