
@font-face {
  font-family: 'My Font', 'a Atrospheric' !important;
  src: url('../fonts/aAtmospheric.otf') format("opentype");
  src: url('../fonts/Arc.otf') format("opentype");
  font-family: 'Respondent Black';
  src: url("../fonts/RespondentBlack_PERSONAL_USE_ONLY.otf") format("opentype");

}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    background:
        radial-gradient(at top left, #1e0036, #121212),
        url("../images/backgrounds/map.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    background-blend-mode: multiply;
}

/* Overlay gradient effects */
body::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 0, 255, 0.1), transparent 50%),
                radial-gradient(circle at bottom left, rgba(0, 255, 255, 0.1), transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Center container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
}

/* Login card - glassmorphic style */
.login-card {
    background: rgba(35, 10, 60, 0.3);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    color: #eee;
    box-shadow:
        inset 0 0 30px rgba(255, 0, 255, 0.1),
        0 6px 20px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 0, 255, 0.2),
        0 0 40px rgba(0, 255, 255, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.login-card:hover {
    box-shadow:
        inset 0 0 40px rgba(255, 0, 255, 0.25),
        0 8px 32px rgba(255, 0, 255, 0.3),
        0 0 60px rgba(0, 255, 255, 0.2);
    transform: scale(1.01);
}

/* Neon-styled title */
.login-title {
    font-family: 'My Font', 'a Atrospheric', sans-serif !important;
    font-size: 2.8em;
    color: #ff00ff;
    /*text-shadow: 0 0 8px #ff00ff88;*/
    margin-bottom: -30px;
    letter-spacing: 2px;
}

 a, a:visited, a:hover, a:active {
    color: #ff00ff;    
    text-shadow: 0 0 8px #ff00ff88;
    text-decoration: none;
 }

.login-subtitle {
    font-family: 'Respondent Black', sans-serif;
    font-size: 1.8em;
    color: #ff00ff;
    margin-bottom: 20px;
    text-shadow: 0 0 6px #ff00ff88;
}

/* Neon input styling */
.neon-input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    background: rgba(25, 0, 50, 0.3);
    border: 1.5px solid transparent;
    border-radius: 12px;
    color: #eee;
    font-size: 1em;
    box-shadow: inset 0 0 8px rgba(255, 0, 255, 0.25);
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.neon-input:focus {
    border-color: #cc00cc;
    box-shadow: 0 0 12px #cc00cc, inset 0 0 16px #cc00cc;
    outline: none;
}

/* Neon button */
.neon-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, rgba(255,0,255,0.7), rgba(0,255,255,0.7));
    border: none;
    border-radius: 12px;
    color: #eee;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(255,0,255,0.4), 0 0 15px rgba(0,255,255,0.4);
}
.neon-button:hover {
    filter: brightness(1.15);
    box-shadow: 0 0 20px rgba(255,0,255,0.6), 0 0 30px rgba(0,255,255,0.6);
}

/* Row that holds the checkbox and its text */
.agree-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 15px; /* space before reCAPTCHA/button */
}

/* Label contains ONLY the input + visual box (no text) */
.neon-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

/* Keep the real checkbox focusable but invisible */
.neon-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Visual box */
.neon-checkbox .box {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid #cc00cc;
  background: rgba(25, 0, 50, 0.3);
  box-shadow: inset 0 0 8px rgba(255, 0, 255, 0.25);
  transition: 0.3s ease;
}

/* Checked state */
.neon-checkbox input[type="checkbox"]:checked + .box {
  background: #cc00cc;
  box-shadow: 0 0 12px #cc00cc, 0 0 24px #cc00cc;
}

/* Checkmark */
.neon-checkbox .box::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(0.8);
  transition: 0.2s ease;
}

/* Show checkmark when checked */
.neon-checkbox input[type="checkbox"]:checked + .box::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

/* Optional: visible focus ring for keyboard users */
.neon-checkbox input[type="checkbox"]:focus + .box {
  outline: 2px solid #cc00cc99;
  outline-offset: 2px;
}

.discord-button {
    display: inline-block;
    text-align: center;
    background: linear-gradient(90deg, rgba(88,101,242,0.85), rgba(114,137,218,0.85));
    color: white;
    font-weight: bold;
    padding: 12px; /* same as .neon-button */
    border: none;
    border-radius: 12px; /* same as .neon-button */
    margin-top: 15px;
    text-decoration: none;
    font-size: 1.1em; /* same as .neon-button */
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.4), 0 0 15px rgba(88, 101, 242, 0.4);
}

.discord-button i {
    margin-right: 8px;
}

.discord-button:hover {
    background: linear-gradient(90deg, rgba(114,137,218,1), rgba(88,101,242,1));
    filter: brightness(1.1);
    box-shadow: 0 0 20px rgba(88,101,242,0.6), 0 0 30px rgba(114,137,218,0.8);
    color: white; /* text stays white */
}

/* Responsive */
@media screen and (max-width: 768px) {
    .login-title {
        font-size: 2.2em;
        margin-bottom: -20px;
    }

    .login-subtitle {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    .login-card {
        padding: 25px;
    }

    .neon-input, .neon-button {
        font-size: 1em;
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
    .login-title {
        font-size: 1.8em;
        margin-bottom: -10px;
    }

    .login-subtitle {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .login-card {
        padding: 15px;
    }

    .neon-input, .neon-button {
        font-size: 0.9em;
        padding: 8px;
    }
}
