body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background: #131419;
        }
        .form {
  width: 360px;
  padding: 40px;
  background: linear-gradient(145deg, #1a1c22, #111216);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(3, 169, 244, 0.1); /* Azul suave */
  transition: all 0.3s ease-in-out;
}

        .form h2 {
            color: #c7c7c7;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 4px;
        }
        .form .inputBox {
            margin-top: 20px;
            text-align: left;
        }
        .form .inputBox label {
            color: #868686;
            margin-bottom: 5px;
            font-size: 18px;
        }
        .form .inputBox input {
            width: 100%;
            height: 50px;
            background: #131419;
            border: none;
            outline: none;
            border-radius: 40px;
            padding: 5px 15px;
            font-size: 18px;
            color: #03a9f4;
            box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.1),
                        inset 2px 2px 6px rgba(0,0,0,0.8);
        }
        .form .inputBox input[type="submit"] {
            margin-top: 20px;
            cursor: pointer;
        }
        .form .inputBox input::placeholder {
            color: #555;
        }
        .forget {
            margin-top: 30px;
            color: #555;
        }
        .forget a {
            color: #ff0047;
        }
        .modal-style-success {
  width: 350px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #1c1e24;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.checkmark.draw {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  border: 5px solid #2ecc71;
  position: relative;
  animation: rotate-in 0.6s ease-in-out forwards;
}

.checkmark.draw::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 40px;
  width: 30px;
  height: 15px;
  border-left: 5px solid white;
  border-bottom: 5px solid white;
  transform: scale(0) rotate(-45deg);
  opacity: 0;
  animation: draw-check 0.4s 0.6s ease forwards;
}

@keyframes rotate-in {
  0% {
    transform: rotate(0deg) scale(0.3);
    opacity: 0;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 1;
  }
}

@keyframes draw-check {
  to {
    transform: scale(1) rotate(-45deg);
    opacity: 1;
  }
}
.modal-style-error {
  width: 350px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #1c1e24;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.crossmark.draw {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  border: 5px solid #e74c3c;
  position: relative;
  animation: rotate-in-red 0.6s ease-in-out forwards;
  display: flex;
  justify-content: center;
  align-items: center;
}

.crossmark.draw::before,
.crossmark.draw::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  background-color: white;
  border-radius: 2px;
  transform-origin: center;
  opacity: 0;
}

.crossmark.draw::before {
  transform: rotate(45deg) scale(0);
  animation: draw-cross 0.3s 0.6s ease-out forwards;
}

.crossmark.draw::after {
  transform: rotate(-45deg) scale(0);
  animation: draw-cross 0.3s 0.75s ease-out forwards;
}

@keyframes rotate-in-red {
  0% {
    transform: rotate(0deg) scale(0.3);
    opacity: 0;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 1;
  }
}

@keyframes draw-cross {
  to {
    transform: scale(1);
    opacity: 1;
  }
}