@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  background: radial-gradient(circle at 20% 30%, #fdeff9, transparent 40%),
    radial-gradient(circle at 80% 20%, #e0c3fc, transparent 50%),
    radial-gradient(circle at 60% 80%, #a1c4fd, transparent 50%),
    linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
  background-blend-mode: soft-light;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

.wrapper {
  max-width: 350px;
  min-height: 500px;
  margin: 40px auto;
  padding: 40px 30px 30px;
  background-color: lavender;
  border-radius: 15px;
  box-shadow: 5px 5px 10px #cbced1, -5px -5px 10px #fff;
}

.wrapper .name {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 1.3px;
  padding-left: 10px;
  color: #555;
}

.wrapper .form-field input {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  background: none;
  font-size: 1.2rem;
  color: #666;
  padding: 10px 15px 10px 10px;
}

.wrapper .form-field {
  padding-left: 30px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
}

.wrapper .form-field .fas {
  color: #555;
}

.wrapper .btn {
  box-shadow: none;
  width: 100%;
  height: 40px;
  background-color: #03a9f4;
  color: #fff;
  border-radius: 25px;
  box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #fff;
  letter-spacing: 1.3px;
}

.wrapper .btn:hover {
  background-color: #039be5;
}

.wrapper a {
  text-decoration: none;
  font-size: 0.8rem;
  color: #03a9f4;
}

.wrapper a:hover {
  color: #039be5;
}

@media (max-width: 380px) {
  .wrapper {
    margin: 30px 20px;
    padding: 40px 15px 15px;
  }
}

input {
  font-size: 90% !important;
  padding: 15px !important;
}

#status-widget {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  color: #fff;
  font-size: 80%;
  border-radius: 5px;
  transition: background-color 0.5s ease;
}

.logo {
  width: 80px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo .qiraati {
  height: 80px;
  z-index: 2;
  padding: 7px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 3px #5f5f5f, 0 0 0 5px #ecf0f3, 8px 8px 15px #a7aaa7,
    -8px -8px 15px #fff;
}

.logo .bingkai {
  height: 80px;
  position: absolute;
  animation: spin 20s linear infinite;
  z-index: 1;
  padding: 7px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.form-field {
  border: 1px solid #ced4da;
  padding: 0 22px;
  border-radius: 5px;
  max-width: 400px;
}

.form-field .fa-eye,
.form-field .fa-eye-slash {
  cursor: pointer;
  margin-left: auto;
}

.form-field input {
  border: none;
  outline: none;
  flex: 1;
  margin-left: 10px;
}
