@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
    background: #fff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin-top: 150px;
    margin-bottom: 200px;
}

.submit {
  background: linear-gradient(to right, #3b82f6 0%, #625cd1 51%, #a855f7 100%);
  border: none;
  outline: none;
  cursor: pointer;
  color: white;
  padding: 11px 35px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
}

.input-main input {
  height: 26px;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #a2a2a2;
  font-size: 1rem;
}

.input-main input::placeholder {
  color: #a2a2a2;
}

.input-main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  background-color: #ebebeb;
  border-radius: 100px;
  margin-right: 15px;
}

.input-main svg {
  width: 30px;
  height: auto;
  fill: #a2a2a2;
  margin-right: 10px;
}

.form-box {
  display: flex;
  align-items: center;
  margin: 0 20px;
  margin-top: 39px;
}

.description {
  font-size: 1.1rem;
  color: #636363;
}

.title {
  text-transform: uppercase;
  font-weight: 900;
  color: #4a4a4a;
}

.img-head {
  width: 100%;
  height: auto;
  /* margin-top: 45px; */
}

.container {
  text-align: center;
  background: linear-gradient(white, white) padding-box, conic-gradient(from var(--angle), #625cd1, #ebebfb) border-box;
  width: 100%;
  --angle: 0deg;
  -webkit-animation: rotate-gradient 10s infinite linear;
  animation: rotate-gradient 10s infinite linear;
  padding: 30px;
  border: 2px solid transparent;
  border-radius: 50px;
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
  margin: 50px auto;
}

@property --angle {
syntax: '<angle>';
inherits: true;
initial-value: 0deg;
}

@-webkit-keyframes rotate-gradient {
from { --angle: 0deg; }
to { --angle: 360deg; }
}

@keyframes rotate-gradient {
from { --angle: 0deg; }
to { --angle: 360deg; }
}

@media only screen and (max-width: 500px) {
  body {
    margin-left: 15px;
    margin-right: 15px;
  }
  .img-head {
    /* margin-top: 75px; */
  }
  .form-box {
    display: grid;
  }
  .input-main {
    margin-right: 0;
  }
  .submit {
    margin-top: 16px;
  }
  .description {
    font-size: 1rem;
    margin: 0 35px;
  }
  .title {
    font-size: 1.5rem;
  }
  .form-box {
    margin-top: 25px;
  }
  
  .container {
    border-radius: 15px;
    width: 100%;
  }
}

@media only screen and (min-width: 500px) {
  .container {
    border-radius: 15px;
    width: 80%;
  }
  .form-box {
    display: grid;
    margin-top: 20px;
  }
  .input-main {
    margin-right: 0;
  }
  .submit {
    margin-top: 16px;
  }
}

@media only screen and (min-width: 768px) {
  .container {
    border-radius: 15px;
    width: 50%;
  }
}

@media only screen and (min-width: 992px) {
  .container {
    border-radius: 15px;
    width: 30%;
  }
}

#khodam-container {
    text-align: center;
    margin-top: -100px;
    display: none;
}

#loading {
    text-align: center;
    margin-top: 20px;
    display: none;
}

#loadingIMG {
  height: 80px;
}

#khodam-image {
    max-width: 120px;
    border-radius: 50%;
}
    
#khodam-name, #oshi-res, #jiko {
}

.blur {
    animation: blurIn 1s ease-out forwards;
}

#retry {
  width: 100%;
}

/* Animasi Blur */
@keyframes blurIn {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}

.username {
  color: #625cd1; /* Ubah ini ke warna yang Anda inginkan */
}
.gen {
  color: #a855f7; /* Ubah ini ke warna yang Anda inginkan */
}