.card-form-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 65px);
}

.card-form {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
    padding: 20px;
    height: 600px;
    width: 400px;
    background-color: #010c25;
    border-radius: 8px;
    gap: 20px;
}

.card-form::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 14px;

    background: conic-gradient(
        red,
        orange,
        yellow,
        lime,
        cyan,
        blue,
        purple,
        red
    );

    padding: 3px;

    -webkit-mask: 
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.title-form {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    font-family: "Inter", "Segoe UI", sans-serif;
}

form {
  width: 400px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.input-group {
    position: relative;
    width: 75%;
    font-family: Inter, Segoe UI, sans-serif;
    margin-bottom: 16px;
}

.input-group input {
    width: 100%;
    padding: 12px 10px;
    border-radius: 8px;
    border: 1px solid black;
    outline: none;
    font-size: 16px;
    font-family: Inter, Segoe UI, sans-serif;
}

.input-group select {
    width: 100%;
    padding: 12px 10px;
    border-radius: 8px;
    border: 1px solid black;
    outline: none;
    font-size: 16px;
    font-family: Inter, Segoe UI, sans-serif;
    background: #fff;
    height: 44px;
}

.input-group label {
    position: absolute;
    left: 10px;
    top: 12px;
    color: gray;
    padding: 0 6px;
    font-size: 16px;
    transition: 0.2s;
    pointer-events: none;
    background: #fff;
    border-radius: 6px;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group select:focus + label,
.input-group select:valid + label {
    top: -9px;
    font-size: 12px;
}


/* From Uiverse.io by adeladel522 */ 
.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}
/* From Uiverse.io by adeladel522 */ 