@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-image: linear-gradient(134deg, #fcc6c6, 45%, gray);
}

.container-signup {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
}

.img-box {
  width: 50%;
  height: 100%;
  background-image: linear-gradient(134deg, #fcc6c6, 45%, gray);
  border-bottom-right-radius: 5%;
  border-top-right-radius: 5%;
  padding: 20px;
}

.img-box img {
  width: 100%;
  height: 100%;
}

.content-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
}

.content-box .form-box {
  width: 50%;
}

.content-box .form-box h2 {
  color: #32324f;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}

.content-box .form-box {
  margin-bottom: 20px;
}

.content-box .form-box .input-box input {
  width: 100%;
  padding: 10px;
  outline: none;
  border: none;
  font-weight: 400;
  font-size: 17px;
  color: #32324f;
  background-color: #ecf2f7;
  border-radius: 6px;
  margin-top: 10px;
}

.content-box .form-box .input-box span {
  font-size: 16px;
  margin-bottom: 5px;
  display: inline-block;
  color: #32324f;
  font-weight: 400;
}

.content-box .form-box .input-box input::placeholder {
  color: #a9adb6;
}

.content-box .form-box .input-box input[type="submit"] {
  background: #3d3d3d;
  color: #fff;
  outline: none;
  border: none;
  font-weight: 500;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s;
}

.content-box .form-box .input-box input[type="submit"]:hover {
  background: #0d202b;
}

.button-back a {
  display: flex;
  padding: 10px 10px;
  background-color: #3d3d3d;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  margin-top: 15px;
}

.button-back a:hover {
  background-color: #2c2a2a;
  transition: 0.3s;
}

/* REPONSIVE */
@media (max-width: 868px) {
  .container-signup .img-box {
    display: none;
  }

  .container-signup .content-box {
    width: 100%;
  }

  .container-signup .content-box .form-box {
    width: 100%;
    padding: 40px;
    background: #fff;
    margin: 50px;
    border-radius: 6px;
  }

  /*.button-back {
    display: flex;
    justify-content: center;
    text-align: center;
  }*/
}

@media (max-width: 420) {
  .container-signup .content-box .form-box {
    flex-wrap: wrap;
  }

  .container-signup .content-box .form-box h2 {
    color: red;
  }

  .container-signup .content-box .form-box {
    margin-top: 20px;
  }

  .button-back {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }

  .container-signup .content-box .form-box .input-type {
    font-size: 8px;
  }
}
