*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    height: 100%; /* Ensure body takes full height of the viewport */
    margin: 0; /* Remove default margin */
}

body {
    background-color: #121212;
    background-image: linear-gradient(315deg, #121212 0%, #2c2c2c 74%);
    font-family: 'Poppins', sans-serif;
    color: #e0e0e0;
    padding: 0px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-attachment: fixed;
}

.main-container {
    background: #1f1f1f;
    border-radius: 10px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
    width: 95%;
    max-width: 1200px;
    margin-top: 10px;
    padding: 10px;
}

h1 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 48px;
    margin: 0px;
    text-align: center;
    letter-spacing: 3px;
    font-weight: 700;
    background: linear-gradient(90deg, #00ff00 0%, #ff9800 50%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0px;
}

h2 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 26px;
  margin: 10px 0;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 700;
  background: linear-gradient(90deg, #4caf50 0%, #2196f3 50%, #673ab7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Makes the gradient visible only on text */
  padding: 0px;
  border-bottom: 3px solid #2196f3; /* Creates a clean and sharp underline */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    margin: 0px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 400;
    color: #fff;
}

.blinking {
    animation: blinkAnimation 1s infinite;
}

@keyframes blinkAnimation {
    0%, 50%, 100% {
        background: #1F1F1F;
    }
    25%, 75% {
        background: linear-gradient(90deg, transparent 0%, transparent 100%);
    }
}



.form-group {
  margin-bottom: 15px;
}

input[type="text"], input[type="password"], input[type="number"] {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  width: 100%;
  padding: 14px;
  margin-top: 3px;
  font-size: 16px;
  border: 1px solid #444;
  border-radius: 6px;
  background-color: #2c2c2c;
  color: #e0e0e0;
  box-sizing: border-box;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="number"]:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 5px #ffd700;
}
input[type="submit"] {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background-color: #ff5722;
    color: #fff;
    padding: 4px;
    border: none;
    width: 100%;
    font-size: 25px;
    cursor: pointer;
    border-radius: 6px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    background: linear-gradient(45deg, #043162 0%, #266fbe 18%, #043162 10%);
}

input[type="submit"]:hover {
  opacity: 50%;
}

.notice {
  text-align: center;
  color: #fff;
}
.cf-turnstile {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}