* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: 0;
}
html {
  font-size: 62.5%;
  font-family: "Roboto", sans-serif;
}

body {
  background: #fff;
  width: 100%;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2.4rem;
}

.left-title {
  width: 100%;
  max-width: 56rem;
  color: #000;
  font-size: 4.2rem;
  letter-spacing: 0.231rem;
  margin-bottom: 2.5rem;
}

.left-form {
  width: 100%;
  max-width: 56rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 9;
}
.left-form::before {
  content: "";
  position: absolute;
  background-image: url(assets/code1.png);
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  bottom: -50px;
  right: -55px;
  z-index: 1;
}

.left-form .input[type="email"],
.left-form .input[type="password"],
.left-form .input[type="text"] {
  width: 100%;
  max-width: 56rem;
  height: 5.2rem;
  border-radius: 4px;
  border: 1px solid #000;
  padding-left: 2rem;
  color: #000;
  font-size: 1.6rem;
  letter-spacing: 0.088rem;
}

.left-form .submit {
  width: 100%;
  max-width: 56rem;
  height: 5.2rem;
  background: #0056fb;
  border-radius: 0.4rem;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.088rem;
  margin-bottom: 2.5rem;
  z-index: 2;
  cursor: pointer;
}

.left-checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.left-checkbox input[type="checkbox"] {
  width: 2.1rem;
  height: 2.1rem;
}

.left-checkbox label {
  font-size: 1.6rem;
  letter-spacing: 0.88px;
}

.left-link {
  width: 100%;
  max-width: 560px;
  color: #000;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.88px;
}

.left-link a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
}

.right {
  flex: 1;
  background: #0056fb;
  height: 100vh;
  padding: 0 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.right-img {
  width: 100%;
  max-width: 40rem;
  margin-bottom: 4rem;
}

.right-text {
  width: 100%;
  max-width: 40rem;
}

.right-text h2 {
  color: #fff;
  font-size: 3.8rem;
  letter-spacing: 0.264rem;
  margin-bottom: 2.5rem;
}
.right-text p {
  font-size: 1.8rem;
  color: #fff;
  line-height: 150%;
  letter-spacing: 0.099rem;
}

@media (max-width: 700px) {
  .container {
    flex-direction: column;
    min-height: 100vh;
  }

  .left{
    width: 85%;
    padding: 18.9rem 0 9rem 0;
  }

  .right {
    width: 100%;
    padding: 7.2rem 0;
  }
}

@media (max-width: 425px) {
  .left {
    width: 90%;
  }
  .left-title {
    font-size: 32px;
    letter-spacing: 0.176rem;
    margin-bottom: 15px;
  }
  .left-form::before {
    display: none;
  }
  .right-img{
    width: 90%;
  }
  .right-text{
    width: 90%;
  }

  .right-text h2 {
    font-size: 28px;
  }

  .right-text p {
    font-size: 14px;
    text-align: justify;
  }
}
