html, body {
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #121212;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
  padding: 20px 40px;
  border-radius: 16px;
  background-color: #1a1a1a;
  color: #e9e4e4;
  border: 1px solid #333;
  transform: translateX(-10px);
}

.title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  padding-left: 28px;
  color: #d0d0d0;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.title::before,
.title::after {
  content: "";
  position: absolute;
  left: 0;
  border-radius: 50%;
  background-color: #ff8000;
}

.title::before {
  width: 14px;
  height: 14px;
}

.title::after {
  width: 14px;
  height: 14px;
  animation: pulse 1s linear infinite;
}

.message,
.signin {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}


.signin {
  text-align: center;
}

.signin a {
  color: #ff8000;
}

.signin a:hover {
  text-decoration: underline;
  color: #5aa9ff;
}

.goback {
  text-align: right;
  font-size: 0.85rem;
  color: #9ca3af;
}

.goback a {
  color: #cbcbcb;
  text-decoration: none;
}

.goback a:hover {
  color: #5aa9ff;
  text-decoration: underline;
}

.flex {
  display: flex;
  width: 100%;
  gap: 6px;
}

.form label {
  position: relative;
}

.form label .input {
  background-color: #1d1d1d;
  color: #e4e4e4;
  width: 95%;
  padding: 20px 5px 5px 10px;
  outline: 0;
  border: 1px solid rgba(143, 143, 143, 0.397);
  border-radius: 8px;
  font-weight: 100;
}

.form label .input:hover {
  border-color: #ffffff;
}

.form label .input + span {
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 10px;
  top: 12.5px;
  font-size: 0.9em;
  cursor: text;
  transition: .3s ease;
}

.form label .input:placeholder-shown + span {
  top: 13px;
  font-size: 0.9em;
}

.form label .input:focus + span,
.form label .input:valid + span {
  color: #ff8000;
  top:2px;
  bottom: 2px;
  font-size: 0.75em;
  font-weight: 400;
}

.input {
  font-size: 15px;
  font-weight: 100;
}

.submit {
  padding: 8px;
  font-size: 15px;
  border-radius: 8px;
  margin-top: 10px;
  border: none;
  background-color: #ff8000;
  color: white;
  transition: background-color 0.3s ease;
}

.submit:hover {
  background-color: #ff6600;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background-color: #1f1f1f;
  padding: 18px 24px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px #ff8000;
  color: #fff;
}

.popup-content button {
  margin-top: 12px;
  padding: 6px 14px;
  background-color: #ff8000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: white;
}

.popup-content button:hover {
  background-color: #ff6600;
}

.hidden {
  display: none;
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }
  to {
    transform: scale(1.8);
    opacity: 0;
  }
}
.captcha-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-size: .75rem;
 
}

#captchaText {
  background-color: #1d1d1d;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 6px;
  border-radius: 6px;
  letter-spacing: 1px;
  user-select: none;
}

.input-captcha-input {
  flex: 1;
  min-width: 100px;
  padding: 8px 10px;
  font-size: 14px;
  border: .5px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s ease;
   background-color: #1d1d1d;
  color: rgba(255, 255, 255, 0.5);
}

.input-captcha-input:focus {
  border-color: #ff8000;
  box-shadow: 0 0 4px #007bff55;
}
.input-captcha-input:hover{
  border-color: #ff8000
}
