@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, transparent, #009688);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%;
}

.signup-box {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 800px;
  flex-wrap: wrap;
}

.col-1,
.col-2 {
  flex-basis: 50%;
  flex-grow: 1;
}

.col-1 img {
  display: block;
  width: 100%;
}

.col-2 {
  background: #fff;
  padding: 40px 8%;
  color: #333;
  min-width: 250px;
}

.col-2 h2 {
  font-weight: 600;
}

.col-2 span {
  font-size: 12px;
}

.col-2 span a {
  text-decoration: none;
  color: #ef005d;
  font-weight: 500;
}

.google-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ef005d;
  text-decoration: none;
  color: #555;
  font-size: 13px;
  margin: 20px 0;
}

.google-link img {
  width: 20px;
  margin-right: 10px;
}

.col-2 h4 {
  text-align: center;
  font-weight: 400;
  margin-bottom: 10px;
}

.input-field {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ef005d;
  outline: none;
  display: block;
  width: 100%;
  margin: 5px 0 10px;
}

form label {
  font-weight: 500;
  font-size: 12px;
}

.row {
  display: flex;
  align-items: center;
}
.row input {
  margin-right: 6px;
}
.col-2 form button {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ef005d;
  outline: none;
  display: block;
  width: 100%;
  margin: 18px 0 10px;
  background: #ef005d;
  color: #fff;
  cursor: pointer;
  transition: background 0.5s ease-out, border 0.5s ease-out;
}

.col-2 form button:hover {
  background: #96023a;
  border: 1px solid #96023a;
}
