body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.hero {
  height: 100%;
  width: 100%;
  background-image: url("https://i.postimg.cc/sgLKWSwN/premium-photo-1708633003273-bed7672ddd81-mark-https-images-unsplash-com-opengraph-logo-png-mark-w.jpg");
  background-blend-mode: darken;
  background-position: center;
  background-size: cover;
  position: absolute;
}

.form-box {
  width: 380px;
  height: 480px;
  position: relative;
  margin: 6% auto;
  background: rgb(233, 226, 226);
  padding: 5px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 5px 10 rgba(0, 0, 0, 0.3);
}

.button-box {
  width: 220px;
  margin: 35px auto;
  position: relative;
  box-shadow: 0 0 20px 9px #ff61241f;
  border-radius: 30px;
}

.toggle-btn {
  padding: 10px 30px;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: none;
  position: relative;
}

#btn {
  top: 0;
  left: 0;
  position: absolute;
  width: 110px;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 60, 120, 1) 3%,
    rgba(198, 41, 41, 1) 54%,
    rgba(198, 152, 152, 1) 100%
  );
  border-radius: 30px;
  transition: 0.5s;
}

#btn:hover {
  background-color: var(--primary-color);
}

.social-icons {
  margin: 30px auto;
  text-align: center;
}
.social-icons img {
  width: 30px;
  margin: 0 12px;
  box-shadow: 0 0 20px 0 #7f7f7f3d;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.4s ease-in-out;
}

.social-icons img:active {
  transform: translateY(5px);
}

.input-group {
  top: 180px;
  position: absolute;
  width: 280px;
  transition: 0.5s;
}
.input-field {
  color: rgb(86, 85, 85);
  width: 100%;
  padding: 10px 0;
  margin: 5px 0;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #999;
  outline: none;
  background: transparent;
}
.submit-btn {
  width: 85%;
  padding: 10px 30px;
  cursor: pointer;
  display: block;
  margin: auto;
  background: linear-gradient(
    120deg,
    rgba(255, 60, 120, 1) 3%,
    rgba(198, 41, 41, 1) 54%,
    rgba(198, 152, 152, 1) 100%
  );
  border: 0;
  outline: none;
  border-radius: 30px;
  transition: transform 0.4s ease-in-out;
}

.submit-btn:active {
  transform: translateY(5px);
}

.submit-btn:hover {
  background-color: #ff3c78;
}

.check-box {
  margin: 30px 10px 30px 0;
}
span {
  color: rgb(86, 85, 85);
  font-size: 0.8rem;
  bottom: 65px;
  position: absolute;
}
#login {
  left: 50px;
}
#register {
  left: 450px;
}
