@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --color: rgba(234, 69, 76, 0.82);
  --dark: rgba(99, 99, 100, 1);
  --white: rgba(217, 217, 217, 1);
  --background: rgb(10, 10, 10, 1);
  --box-shadow: 0px 4px 10px 0px rgba(233, 68, 75, 0.25);
}
html {
  background-color: var(--background);
}
.container {
  width: 1000px;
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  height: 100vh;
  flex-wrap: wrap;
  color: var(--white);

  .loginIn {
    padding: 15px;
    text-align: center;

    .welcome {
      font-family: Poppins;
      font-size: 34px;
      font-weight: 500;
      line-height: 51px;
      letter-spacing: 0.03em;
      text-align: center;
      color: var(--color);
    }
    .detail {
      font-family: Poppins;
      font-size: 14px;
      font-weight: 400;
      line-height: 21px;
      letter-spacing: 0.03em;
      text-align: center;
      color: var(--dark);
      justify-content: center;
      align-items: center;
    }

    form {
      position: relative;
      text-align: center;
      margin-top: 2rem;
      .content {
        font-family: Poppins;
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        letter-spacing: 0.03em;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;

        .colo {
          color: var(--color);
          /* margin-left: 0.2rem; */
        }
      }
      .codes {
        margin-top: 2.5rem;
        display: flex;
        flex-wrap: nowrap;
        gap: 5px;
        .code {
          width: 60px;
          height: 100px;
          border: 3px solid rgba(234, 69, 76, 1);
          border-radius: 100px;
          background: transparent;
          color: var(--color);
          font-family: Poppins;
          font-size: 45px;
          font-weight: 500;
          line-height: 67.5px;
          letter-spacing: 0.03em;
          text-align: center;
          outline: none;
        }
      }
      .flex {
        display: flex;
        flex-direction: column;
        margin-top: 1rem;
        text-align: left;

        .email {
          font-family: Poppins;
          font-size: 14px;
          font-weight: 500;
          line-height: 21px;
          letter-spacing: 0.03em;
        }

        input {
          width: 313.97px;
          height: 41.31px;
          gap: 0px;
          border-radius: 12px;
          background: var(--background);
          border: 1px solid rgba(255, 255, 255, 0.25);
          opacity: 0px;
          padding: 0 15px;
          color: var(--white);
          font-size: 19px;
          outline: none;
          accent-color: var(--background);

          &::placeholder {
            font-family: Poppins;
            font-size: 14px;
            font-weight: 300;
            line-height: 21px;
            letter-spacing: 0.03em;
          }
        }
      }
      .items {
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: space-between;
        margin-top: 1rem;

        .remembers {
          display: flex;
          justify-content: center;
          .me {
            font-family: Poppins;
            font-size: 12px;
            font-weight: 500;
            line-height: 18px;
            letter-spacing: 0.03em;
            text-align: center;
            margin-left: 0.3rem;
          }
          input {
            accent-color: var(--color);
          }
        }
        a {
          text-decoration: none;
          font-family: Poppins;
          font-size: 12px;
          font-weight: 500;
          line-height: 18px;
          letter-spacing: 0.03em;
          text-align: center;
          color: var(--white);
        }
      }

      .submit {
        box-shadow: var(--box-shadow);
        width: 100%;
        margin-top: 1rem;
        padding: 10px;
        border-radius: 12px;
        outline: none;
        position: relative;
        border: none;
        background-color: var(--color);
        color: var(--white);
        font-family: Poppins;
        font-size: 14px;
        font-weight: 500;
        line-height: 21px;
        letter-spacing: 0.03em;
        text-align: center;
        z-index: 2;
        overflow: hidden;
        cursor: pointer;

        &::before {
          content: "";
          position: absolute;
          width: 20px;
          background: var(--color);
          height: 100%;
          left: 0.5rem;
          top: 0;
          border-radius: 12px;
          filter: blur(90px);
          transform: skew(-20deg);
          z-index: -1;
          /* opacity: 0; */
          animation: slide-glow 1550ms forwards;
        }

        &::after {
          animation: slide-glow 1550ms forwards infinite;
          /* opacity: 0; */
          content: "";
          position: absolute;
          width: 100px;
          background: var(--color);
          height: 100%;
          left: 0.2rem;
          top: 0;
          z-index: -1;
          border-radius: 12px;
          transform: skew(-20deg);
        }
      }

      .option {
        margin-top: 1rem;
        display: flex;
        justify-content: space-between;
        .google {
          display: flex;
          justify-content: center;
          text-align: center;
          align-items: center;
          border: 1px solid rgba(255, 255, 255, 0.25);
          padding: 5px;
          color: var(--white);
          text-decoration: none;
          width: 131px;
          height: 41px;
          border-radius: 12px;
          svg {
            margin-right: 0.5rem;
            width: 29px;
            height: 29px;
          }
        }
      }

      .signUp {
        font-family: Poppins;
        font-size: 10px;
        font-weight: 500;
        line-height: 15px;
        letter-spacing: 0.03em;
        text-align: center;
        margin-top: 1rem;
        a {
          font-family: Poppins;
          font-size: 10px;
          font-weight: 500;
          line-height: 15px;
          letter-spacing: 0.03em;
          text-align: center;
          color: var(--color);
          text-decoration: none;
        }
      }
    }
  }
  .image {
    img {
      width: 513.68px;
      height: 450.08px;
    }
  }
}
@keyframes slide-glow {
  0% {
    transform: skew(-20deg) translateX(-120px);
  }
  100% {
    transform: skew(-20deg) translateX(380px);
  }
}
.reset {
  font-family: Poppins;
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0.03em;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;

  .brown {
    color: var(--color);
    font-family: Poppins;
    font-size: 10px;
    font-weight: 500;
    line-height: 15px;
    letter-spacing: 0.03em;
    text-align: center;
  }
}
.invisible {
  display: none;
}
.loading {
  border: 40px solid color-mix(in srgb, var(--color), transparent 80%);
  height: 250px;
  width: 250px;
  position: relative;
  border-radius: 50%;
}
.loading::after {
  content: "";
  position: absolute;
  border: 35px solid color-mix(in srgb, var(--color), transparent 10%);
  height: 177px;
  width: 174px;
  border-radius: 50%;
  left: -2.3rem;
  top: -2.4rem;
  border-bottom: 35px solid transparent;
  border-right: 35px solid transparent;
  border-left: 35px solid transparent;
  animation: load 6s ease-in-out infinite;
}
@keyframes load {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 2000deg;
  }
}
.verfity {
  font-family: Poppins;
  font-size: 34px;
  font-weight: 500;
  line-height: 51px;
  letter-spacing: 0.03em;
  text-align: left;
  color: var(--color);
}
.load {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
@media (max-width: 900px) {
  .container {
    width: 0;
    margin: auto;
    max-width: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    height: 100vh;
    flex-wrap: wrap;
    color: var(--white);
  }
  .image {
    display: none;
  }
}
.remove {
  display: none;
}
