@import url("https://fonts.googleapis.com/css?family=Anton&display=swap");

body {
  font-size: 16px;
  height: 100vh;
  background-color: #f9e1e1;
  display: flex;

  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card {
  display: flex;
  width: 1024px;
  background-color: #fed2d0;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.card .left,
.card .right {
  width: 50%;
}

.card .left {
  display: flex;
  padding: 30px 0;
  height: 100%;

  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.card .left .title {
  font-size: 40px;
  font-family: "Anton", sans-serif;
}
.card .left .icon {
  display: flex;

  justify-content: center;
  align-items: center;

  width: 45px;
  height: 45px;

  font-size: 28px;
  font-weight: bold;
  color: #000;

  border-radius: 50%;
  transition: background-color 0.12s linear;
}
.card .left .icon:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.card .right {
  padding-top: 20px;
  background-color: #fff;

  box-sizing: border-box;
}

.card .right .title {
  width: calc(100% - 100px);
  margin: 20px auto;
}
.card .right .submit-btn {
  padding: 12px 0;
  width: 100%;

  border: none;
  background-color: #f49900;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

#form {
  width: calc(100% - 100px);
  padding: 35px 0;
  margin: 0 auto;
  margin-bottom: 25px;
}

#form .input-box {
  margin-bottom: 20px;
}
#form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
#form input[type="text"],
#form input[type="password"] {
  padding: 7px 10px;
  width: 100%;
  box-sizing: border-box;
  border: none;
  box-shadow: 2px 1px 2px 2px rgba(80, 60, 0, 0.1);
}

.card .input-box.checkbox {
  display: flex;

  flex-wrap: wrap;
}

.card .input-box.checkbox .title {
  margin: 0;
}

.card .input-box.checkbox label {
  margin-top: 12px;
  font-size: 14px;
  width: 50%;
}
