* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

:root {
  --primary-color: #dedede;
  --secondary-color: #f83e7c;
  --light-color: #fff;
  --dark-color: #373737;
  --font-color: #6c757d;
  --font-color2: #344767;
  --green-color: #5fd265;
  --blue-color: #49a3f1;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
body #main-header {
  height: 3.5rem;
  overflow: hidden;
  border-radius: 15px;
  position: fixed;
  width: calc(100% - 3rem);
  top: 1.5rem;
  z-index: 1;
  transition: all 0.8s;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}
body #main-header .container {
  padding: 1rem 2rem;
  color: var(--font-color2);
  border-radius: 15px;
  transition: all 0.8s;
  background: var(--light-color);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}
body #main-header .container .pry-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  position: relative;
}
body #main-header .container .pry-cont h4 a {
  text-decoration: none;
  color: var(--font-color2);
}
body #main-header .container .pry-cont .menu {
  position: absolute;
  transition: all 0.5s;
  cursor: pointer;
  right: 0;
}
body #main-header .container .pry-cont .menu span {
  display: block;
  width: 1.5rem;
  height: 1px;
  margin: 7px 0;
  border-radius: 10px;
  background: var(--font-color2);
  transition: all 0.5s;
}
body #main-header .container .pry-cont .ment {
  transform: rotate(3deg);
  transition: all 0.5s;
}
body #main-header .container .pry-cont .ment span {
  position: absolute;
  top: -2px;
  right: 0;
  transition: all 0.5s;
}
body #main-header .container .pry-cont .ment span:first-child {
  transform: rotate(40deg);
}
body #main-header .container .pry-cont .ment span:nth-child(2) {
  transform: rotate(-45deg);
}
body #main-header .container .pry-cont .ment span:last-child {
  opacity: 0;
}
body #main-header .container ul {
  list-style: none;
}
body #main-header .container ul li {
  margin: 1.4rem 0;
}
body #main-header .container ul li a {
  text-decoration: none;
  color: var(--font-color2);
  font-weight: 700;
}
body #main-header .container ul li a i {
  margin-right: 0.5rem;
}
body #main-header .container ul li:last-child {
  margin-bottom: 0;
}
body #main-header .container .hide {
  display: none;
}
body #image-section {
  display: none;
}
body #main-section {
  width: 95%;
}
body #main-section .container {
  background: var(--light-color);
  border-radius: 10px;
}
body #main-section .container form {
  margin: 0 1rem;
}
body #main-section .container form h1 {
  color: var(--font-color2);
  font-size: 1.3rem;
  margin: 1.9rem 0 1rem 0;
}
body #main-section .container form .p {
  text-align: start;
  padding-bottom: 2rem;
}
body #main-section .container form input {
  display: block;
  width: 100%;
  margin: 1rem 0;
  padding: 0.7rem 1rem;
  border-radius: 5px;
  border: 1px solid #d2d6da;
  outline: none;
}
body #main-section .container form input::-moz-placeholder {
  color: var(--font-color);
}
body #main-section .container form input::placeholder {
  color: var(--font-color);
}
body #main-section .container form .check {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0.5rem 0;
  color: var(--font-color2);
}
body #main-section .container form .check .spanb {
  font-weight: bold;
}
body #main-section .container form .check input[type=checkbox] {
  width: auto;
  margin: 0;
  margin-right: 15px;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
  transition: all 0.4s;
}
body #main-section .container form .check input[type=checkbox]:checked ~ .custom_check {
  transition: all 0.4s;
  background: var(--light-color);
  border: 1px solid var(--font-color);
}
body #main-section .container form .check input[type=checkbox]:checked ~ .custom_check:after {
  transition: all 0.4s;
  opacity: 0;
}
body #main-section .container form .check .custom_check {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 17px;
  background: var(--secondary-color);
  border-radius: 5px;
  transition: all 0.4s;
}
body #main-section .container form .check .custom_check:after {
  content: "";
  position: absolute;
  display: opacity 1;
  left: 7px;
  top: 2px;
  width: 3px;
  height: 7px;
  border: solid var(--light-color);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  transition: all 0.4s;
}
body #main-section .container form button {
  width: 100%;
  margin: 2rem 0;
  padding: 12px 0;
  border: 0;
  color: var(--light-color);
  background: var(--secondary-color);
  border-radius: 10px;
  font-weight: bold;
}
body #main-section .container form p {
  padding-bottom: 2.5rem;
  text-align: center;
  color: var(--font-color);
}
body #main-section .container form p a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: bold;
}

@media screen and (min-width: 575px) {
  #main-header, #main-section {
    max-width: 520px;
  }
}
@media screen and (min-width: 765px) {
  #main-header {
    max-width: 675px;
  }
  #main-section {
    max-width: 390px;
  }
}
@media screen and (min-width: 990px) {
  body {
    margin: 0 1.7rem;
  }
  #main-header {
    max-width: 915px;
    height: auto !important;
    border-radius: 8px !important;
  }
  #main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem !important;
    background: rgba(255, 255, 255, 0.7) !important;
    border-radius: 8px !important;
  }
  #main-header .container .pry-cont {
    margin: 0 !important;
    font-size: 0.9rem;
  }
  #main-header .container .pry-cont .menu {
    display: none;
  }
  #main-header .container ul {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.9rem;
  }
  #main-header .container ul li {
    margin: 1.1rem 0 !important;
  }
  #main-header .container ul li i {
    margin-right: 0.3rem;
  }
  #main-header .container .hide {
    display: block !important;
  }
  #main-header .container .hide a {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 8px;
    border-radius: 7px;
  }
  #main-header .container .hide a:first-child {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    margin-right: 5px;
    transition: all 0.4s;
  }
  #main-header .container .hide a:first-child:hover {
    opacity: 0.8;
  }
  #main-header .container .hide a:last-child {
    background: var(--dark-color);
    color: var(--primary-color);
    transition: all 0.4s;
  }
  #main-header .container .hide a:last-child:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  }
  #image-section {
    display: block !important;
    width: 48%;
  }
  #image-section .container img {
    width: 100%;
    height: 95vh;
    border-radius: 10px;
  }
  #main-section {
    max-width: 350px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  #main-header {
    max-width: 1100px;
  }
  #main-section {
    max-width: 360px;
  }
}/*# sourceMappingURL=signup.css.map */