@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-login {
  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 .ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-box .form-box .ul li {
  list-style: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 7px;
  cursor: pointer;
  transition: 0.3s;
}

.content-box .form-box .ul li:hover {
  background: #e4e4e4;
}

.form-box .ul li img {
  width: 40px;
}

.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: 5px;
}

.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: 0.3s;
}

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

.content-box .form-box .remember {
  margin-bottom: 20px;
  color: #32324f;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.content-box .form-box .remember a {
  text-decoration: none;
}

.content-box .form-box .remember a:hover {
  color: #0d202b;
}

.content-box .form-box .input-box p {
  color: #121214;
}

.content-box .form-box h3 {
  color: #32324f;
  text-decoration: none;
  margin: 40px 0 15px;
  font-weight: 500;
  text-align: center;
  font-size: 22px;
}

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

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

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

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

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

  .container-login .content-box .form-box h3 {
    margin: 30px 0 10px;
  }

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

@media (max-width: 450px) {
  .container-login .content-box .form-box .remember {
    flex-wrap: wrap;
  }

  .container-login .content-box .form-box .remember a {
    margin-top: 20px;
  }

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