:root {
    --dark-blue: #000D2A;
    --tosca-color: #94E9E4;
    --light-yellow: #E6D7A5;
    --neon-border: 4px;
    --neon-color: #00eaff;
}

@font-face {
    font-family: 'Conthrax';
    src: local('Conthrax Semi Bold'), local('Conthrax-SemiBold'),
    url('Conthrax-SemiBold.woff2') format('woff2'),
    url('Conthrax-SemiBold.woff') format('woff'),
    url('Conthrax-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

*, html {
    margin: 0;
    padding: 0;
    font-size: 62.5%;
}

body {
    background-color: var(--dark-blue);
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.6rem;
    color: #fff;
}

.page-wrapper {
    width: 100%;
    min-height: 100vh;
    background: url(../img/bg_802.jpg) top center no-repeat;
    background-size: cover;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.logo-tkdn {
    max-width: 70%;
}

.box-wrapper {
    padding: 20px 10px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.5);
}

.font-title {
    font-family: 'Conthrax', sans-serif;
}

.tosca-color {
    color: var(--tosca-color);
}

.light-yellow {
    color: var(--light-yellow);
}

.bg-dark-blue {
    background-color: #00153B;
}

.neon-border {
    border: var(--neon-border) solid var(--neon-color);
    outline: none;
    box-shadow:
            0 0 12px var(--neon-color),
            inset 0 0 15px rgba(0, 234, 255, 0.4);
}

/* Neon Input */
.neon-input {
    padding: 10px 20px;
    font-size: 1rem;
    text-align: center;
    color: white;
    background: #00134d;
    border: var(--neon-border) solid var(--neon-color);
    border-radius: 60px;
    outline: none;
    box-shadow:
            0 0 12px var(--neon-color),
            inset 0 0 15px rgba(0, 234, 255, 0.4);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Placeholder */
.neon-input::placeholder {
    color: rgba(255,255,255,0.9);
}

/* Buttons Row */
.button-group {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
}

/* Neon Buttons */
.neon-btn {
    min-width: 300px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    background: #00134d;
    border: var(--neon-border) solid var(--neon-color);
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
            0 0 10px #00eaff,
            inset 0 0 12px rgba(0, 234, 255, 0.3);
}

/* Hover Effect */
.neon-btn:hover {
    background: #002a80;
    box-shadow:
            0 0 20px #00f7ff,
            0 0 40px rgba(0,247,255,0.6),
            inset 0 0 18px rgba(255,255,255,0.25);
    transform: scale(1.05);
}

/* Active Click */
.neon-btn:active {
    transform: scale(0.98);
}

/* Mobile First */
@media (max-width: 768px) {
    .neon-input {
        font-size: 1rem;
        padding: 10px 20px;
        border-width: 2px;
    }

    .button-group {
        flex-direction: column;
        gap: 20px;
    }

    .neon-btn {
        width: 100%;
        min-width: auto;
        font-size: 1rem;
        padding: 8px 24px;
        border-width: 2px;
    }
}

/* Laptops (≥ 992px) */
@media (min-width: 992px) {
    .page-wrapper {
        margin: 0 auto;
        max-width: 800px;
        min-height: 100vh;
        background-size: cover;
    }
}

/* Form Wrapper */
.form-container-neon2 {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Each Row */
.form-group-neon2 {
    display: flex;
    align-items: center;
    background: rgba(0, 18, 70, 0.95);
    border: var(--neon-border) solid var(--neon-color);
    border-radius: 60px;
    padding: 8px 24px;
    box-shadow:
            0 0 18px rgba(0, 234, 255, 0.6),
            inset 0 0 12px rgba(0, 234, 255, 0.15);
    margin-bottom: 16px;
}

/* Label */
.form-group-neon2 label {
    font-size: 2rem;
    color: #e9d79a;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Colon spacing */
.form-group-neon2 label::after {
    content: ":";
    padding-right: 10px;
    margin-left: 25px;
}

/* Input */
.form-group-neon2 input,
.form-group-neon2 select,
.form-group-neon2 textarea {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 2rem;
    padding-left: 25px;
    font-weight: 300;
}

/* Placeholder */
.form-group-neon2 input::placeholder,
.form-group-neon2 textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: capitalize;
}

/* Select */
.form-group-neon2 select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* Focus Glow */
.form-group-neon2:focus-within {
    box-shadow:
            0 0 25px rgba(0, 255, 255, 0.95),
            0 0 40px rgba(0, 255, 255, 0.35),
            inset 0 0 18px rgba(255,255,255,0.08);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

/* Mobile First */
@media (max-width: 992px) {
    .form-group-neon2 {
        align-items: center;
        border-width: var( --neon-border);
        padding: 8px;
        padding-left: 16px;
        border-radius: 35px;
        margin-bottom: 16px;
    }

    .form-group-neon2 label {
        min-width: auto;
        font-size: 1.4rem;
    }

    .form-group-neon2 input,
    .form-group-neon2 select,
    .form-group-neon2 textarea {
        width: 100%;
        font-size: 2rem;
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .form-container-neon2 {
        gap: 20px;
    }

    .form-group-neon2 label {
        font-size: 1.4rem;
    }

    .form-group-neon2 input,
    .form-group-neon2 select,
    .form-group-neon2 textarea {
        font-size: 1.5rem;
    }
}

/* Futuristic Circular ENTER Button */

.enter-btn {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 8px solid #00eaff;
    background: radial-gradient(circle at 35% 70%,
    #49dfe8 0%,
    #2a8ca3 35%,
    #0b3f66 68%,
    #001a4d 100%);

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: Arial, sans-serif;

    cursor: pointer;
    outline: none;

    box-shadow:
            0 0 25px rgba(0, 234, 255, 0.45),
            inset -25px -25px 50px rgba(255,255,255,0.06),
            inset 20px 20px 40px rgba(0,0,0,0.25);

    transition: all 0.35s ease;
}

/* Hover Effect */
.enter-btn:hover {
    transform: scale(1.05);
    box-shadow:
            0 0 35px rgba(0, 255, 255, 0.8),
            0 0 60px rgba(0, 255, 255, 0.35),
            inset -20px -20px 40px rgba(255,255,255,0.08),
            inset 20px 20px 45px rgba(0,0,0,0.3);
}

/* Click Effect */
.enter-btn:active {
    transform: scale(0.97);
    box-shadow:
            0 0 18px rgba(0,255,255,0.5),
            inset 0 0 35px rgba(0,0,0,0.4);
}

/* Optional center shine */
.enter-btn::before {
    content: "";
    position: absolute;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.02) 45%,
    transparent 70%);
    pointer-events: none;
}

/* Keep pseudo-element positioned correctly */
.enter-btn {
    position: relative;
    overflow: hidden;
}

/* Mobile */
@media (max-width: 768px) {
    .enter-btn {
        width: 220px;
        height: 220px;
        font-size: 2.5rem;
        border-width: 5px;
    }
}

@media (max-width: 480px) {
    .enter-btn {
        width: 120px;
        height: 120px;
        font-size: 1.4rem;
        letter-spacing: 2px;
        text-decoration:none;
    }
}


.long-page {
    height: 100vh;
    padding-top:50px;
}
/* Laptops (≥ 992px) */
@media (min-width: 992px) {
    .long-page {
        padding-top:100px;
    }
}
