@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

body {
  line-height: 1.3;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  background-color: hsl(253, 36%, 5%);
  color: hsl(0, 0%, 100%);
}

.card {
  position: relative;
  z-index: 11;
  overflow: hidden;
  width: 30vw;
  padding: 2.5rem 2rem 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px 2px rgba(0, 0, 0, 0.1), 0 2px 8px 2px rgba(0, 0, 0, 0.2);
  background: transparent;
  backdrop-filter: blur(20px);
}
.card .title {
  text-align: center;
}

.card::before {
  content: "";
  height: 100%;
  width: 100%;
  background: hsla(0, 0%, 100%, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.login-form {
  position: relative;
}
.login-form::before {
  content: "";
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: hsl(211, 74%, 48%);
  position: absolute;
  top: -6rem;
  left: -6rem;
  z-index: -1;
}
.login-form::after {
  content: "";
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(to left, hsl(33, 83%, 51%), hsl(14, 67%, 47%));
  position: absolute;
  right: -6rem;
  bottom: -6rem;
  z-index: -1;
}
.login-form .input-field {
  margin-block: 2rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.login-form .social-login {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.login-form .social-login div {
  width: 100%;
}

.input {
  width: 100%;
  padding: 1rem 0.5rem;
  margin-top: 0.5rem;
  border-radius: 3px;
  border: none;
  font-size: 1.2rem;
  background-color: hsl(255, 7%, 23%);
  color: hsl(0, 0%, 100%);
}
.input::placeholder {
  color: hsl(0, 0%, 100%);
  font-size: 0.9rem;
  opacity: 0.6;
  letter-spacing: 1.07px;
}
.input:focus {
  outline: none;
}

.button {
  border: none;
  border-radius: 8px;
  background-color: hsl(0, 0%, 100%);
  padding: 0.8rem 1rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
}

.primary-btn {
  background-color: hsl(0, 0%, 100%);
  color: hsl(253, 36%, 5%);
  padding: 1.2rem 1.5rem;
}

.secondary-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(0, 0%, 30%);
  color: hsl(0, 0%, 100%);
  text-decoration: none;
}
.secondary-btn i {
  padding-right: 0.5rem;
}

.label {
  font-size: 1.1rem;
  opacity: 0.9;
  letter-spacing: 1.1px;
  font-weight: 700;
}

.App {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

@media (max-width: 600px) {
  .card {
    width: 90vw;
  }
  .login-form .social-login {
    flex-direction: column;
    gap: 1rem;
  }
}

/*# sourceMappingURL=index.css.map */
