/* Variables */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #ffffff;
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
}

.wrapper {
  margin-inline: auto;
  width: min(90%, 50rem);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100vh;
}

.left-side {
  background-color: #92cbef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.8rem;
}

.left-side .cart-illustration {
  width: 580px;
  margin: auto;
  display: block;
}
.left-side .logo-surya {
  width: auto;
  margin: auto;
  display: flex;
  align-items: flex-start;
  padding-bottom: 100px;
}
.left-side .img-and-text h1 {
  color: #ffffff;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 4rem;
  width: 500px;
  margin-inline: auto;
}

.right-side {
  display: flex;
  align-items: center;
}
.right-side a {
  color: #399fdd;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s ease;
}
.right-side a:hover {
  color: #1475b1;
}
.right-side h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #323537;
  margin-top: 3%;
}
.right-side p {
  color: #88898a;
  padding: 1.6rem 0;
}
.right-side .sign-up-buttons {
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.right-side #sign-up {
  background-color: #fff;
  padding: 1.4rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #323537;
  border: 0.1rem solid #d0d3d7;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.right-side form {
  display: flex;
  flex-direction: column;
}
.right-side form label {
  color: #323537;
  margin-bottom: 0.5rem;
}

.right-side .right-p{
  color: #323537;
  margin-bottom: 0.2rem;
}
.right-side form .form-input-container {
  position: relative;
}
.right-side form .form-input-container .icon-name {
  position: absolute;
  top: 2rem;
  left: 2.4rem;
  color: #323537;
}

.file-upload-wrapper{
  position:relative;
  width:100%;
  height:63px;
  margin-bottom: 2rem;
  cursor: pointer;
  border: 0.1rem solid #d0d3d7;
  border-radius: 5px;
}
.file-upload-wrapper::after{
  content:attr(data-text);
  font-size: 1.4rem;
  position:absolute;
  top:0;
  left:0;
  background:#fff;
  padding:10px 15px;
  display: block;
  width:calc(100% - 40px);
  pointer-events:none;
  z-index: 20;
  height:40px;
  line-height: 40px;
  color:#999;
  border-radius: 5px 10px 10px 5px;
  font-weight: 300;
}
.file-upload-wrapper::before{
  content:"Upload";
  position:absolute;
  top: 17px;
  right:17px;
  display: inline-block;
  background: #399fdd;
  color:#fff;
  font-weight: 700;
  z-index: 25;
  font-size: 1.4rem;
  line-height: 30px;
  padding:0 15px;
  text-transform: uppercase;
  pointer-events: none;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
}
.file-upload-wrapper:hover::before{
  background: #1475b1;
}
.file-upload-wrapper input{
  opacity: 0;
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  z-index: 99;
  height:40px;
  margin:0;
  padding:0;
  display:block;
  cursor: pointer;
  width:100%;
}

.right-side form input {
  padding: 1.6rem 2.4rem 1.6rem 5.4rem;
  border-radius: 0.8rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  border: 0.1rem solid #d0d3d7;
  margin-bottom: 2rem;
  width: 100%;
  transition: all 0.4s ease;
}
.right-side form input:focus {
  border: 0.1rem solid #399fdd;
  background-color: none;
  outline: none;
  box-shadow: 0 0 0.8rem rgba(233, 130, 101, 0.241);
}
.right-side .agreement-check {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 3.8rem;
}
.right-side .agreement-check span {
  font-size: 1.2rem;
  color: #88898a;
}

.right-side .selects{
  display: flex;
  flex-wrap: wrap;
}

.right-side .select-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.8rem;
}
.right-side .select-product span {
  font-size: 1.2rem;
  color: #88898a;
}
.right-side #register-button {
  display: inline-block;
  width: 100%;
  transition: all 0.4s ease;
  background-color: #399fdd;
  padding: 1.4rem 3.2rem;
  cursor: pointer;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #fff;
  border: none;
  border-radius: 0.8rem;
  box-shadow: 0 0 1.6rem rgba(101, 202, 233, 0.587);
}
.right-side #register-button:hover {
  background-color: #1475b1;
}
.right-side .credits {
  font-size: 1.2rem;
  color: #88898a;
  text-align: center;
  padding-top: 2.4rem;
}

#text-info span.yes {
  background: #c6ffc5;
  color: #0ea904;
}
#text-info span.no {
  background: #ffc5c5;
  color: #ce0404;
}

/* Media queries */
@media (max-width: 1255px) {
  .left-side {
    padding: 2rem;
  }
  .left-side .cart-illustration {
    width: 450px;
  }

  .grid-container {
    grid-template-columns: repeat(4, 1fr);
  }

  .right-side {
    grid-column: span 3;
  }
}
@media (max-width: 1000px) {
  .left-side {
    padding: 1rem;
  }
  .left-side .cart-illustration {
    width: 300px;
  }

  .grid-container {
    grid-template-columns: repeat(5, 1fr);
  }

  .right-side {
    grid-column: span 4;
  }
}
@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  .left-side {
    padding: 1rem;
  }
  .left-side .cart-illustration {
    display: none;
  }
  .left-side .img-and-text h1 {
    text-align: left;
  }

  .right-side {
    grid-column: auto;
  }
  .right-side h2 {
    display: none;
  }
}
@media (max-width: 650px) {
  html {
    font-size: 55%;
  }

  .left-side {
    display: none;
  }

  .right-side {
    grid-column: auto;
    display: flex;
    align-items: flex-start;
    padding-top: 3.2rem;
  }
  .right-side h2 {
    display: inline-block;
  }
  .right-side .sign-up-buttons {
    flex-direction: column;
  }
  .right-side .agreement-check span {
    line-height: 2.4rem;
  }
  .right-side .select-product span {
    line-height: 2.4rem;
  }
}/*# sourceMappingURL=main.css.map */