.login-section {
    width: 1000px;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 250);
    padding: 30px 30px 30px 30px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.062);
    position: relative;
    overflow: hidden;
}

.login-section::before {
    position: absolute;
    content: "";
    width: 1200px;
    height: 800px;
    background-color: rgb(254, 194, 214);
    opacity: 30%;
    transform: rotate(45deg);
    left: -720px;
    bottom: 30px;
    z-index: 1;
    border-radius: 30px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.082);
  }

  .login-section::after {
    position: absolute;
    content: "";
    width: 800px;
    height: 400px;
    /* background-color: rgb(254, 194, 214); */
    background-color: black;
    opacity: 30%;
    transform: rotate(45deg);
    right: -620px;
    bottom: 260px;
    z-index: 1;
    border-radius: 30px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.082);
  }

.submit-btn {
  background-color: rgb(252, 113, 166);
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transform: rotate(-45deg) translate(-50%, -50%);
  z-index: -1;
}

.submit-btn:hover {
  background-color: rgb(255, 135, 181);
}

.submit-btn:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translate(-50%, -50%) scale(1.2);
}

.submit-btn:active {
  transform: translateY(2px);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
  background-color: rgb(252, 113, 166);
  color: white;
}

.text-footer {
  font-size: 10px;
}

img {
  pointer-events: none;
}

.z-index-2 {
  z-index: 2;
}

/* .strokeme {
  color: white;
  background-color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
} */

.lexend-regular {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

