section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  background: url("../img/bg2.webp") no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.login-border::after,
.login-border::before {
  content: "";
  position: absolute;
  height: 102%;
  width: 101%;
  background-image: conic-gradient(
    from var(--angle),
    #ff5733,
    /* Orange terang */ #ffcc00,
    /* Kuning cerah */ #33cc33,
    /* Hijau cerah */ #0099ff,
    /* Biru muda */ #cc33ff,
    /* Ungu muda */ #ff5733 /* Kembali ke orange terang */
  );
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 8px;
  animation: 3s spin linear infinite;
}

@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

span {
  text-align: center;
}

.clone-btn-orange {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  background-color: #ff7300;
  border: 2px solid #d46911;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.clone-btn-orange:hover {
  background-color: #b35000;
  transform: scale(1.02);
}

.clone-btn-primary {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  background-color: #0d6efd;
  border: 2px solid #0b5ed7;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
}

.clone-btn-primary:hover {
  background-color: #0b5ed7;
  transform: scale(1.02);
}

@media (max-width: 480px) {
  .login-border::after,
  .login-border::before {
    height: 102%;
    width: 103%;
    border-radius: 4px;
  }
}
