/* =========================================================
   NEURIX CHAIN
   Registration Page
   ========================================================= */


/* ---------- RESET ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ---------- BODY ---------- */

body {

    min-height: 100vh;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 102, 255, 0.20),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(0, 210, 255, 0.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #020817 0%,
            #06152c 45%,
            #03101f 100%
        );

    color: #ffffff;

    overflow-x: hidden;
}


/* ---------- PAGE ---------- */

.page-wrapper {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 45px 20px;

    position: relative;

    overflow: hidden;
}


/* ---------- BACKGROUND GLOW ---------- */

.glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;

    opacity: 0.45;
}


.glow-one {

    width: 350px;

    height: 350px;

    background: #0057ff;

    top: -160px;

    left: -120px;
}


.glow-two {

    width: 320px;

    height: 320px;

    background: #00bfff;

    bottom: -160px;

    right: -100px;
}


/* ---------- REGISTRATION CARD ---------- */

.register-box {

    width: 100%;

    max-width: 470px;

    position: relative;

    z-index: 5;

    padding: 38px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.98),
            rgba(245,249,255,0.98)
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,0.45),
        0 0 0 1px rgba(255,255,255,0.15);

    color: #071426;

    backdrop-filter: blur(20px);
}


/* ---------- LOGO AREA ---------- */

.logo-area {

    text-align: center;

    margin-bottom: 28px;
}


.company-logo {

    width: 175px;

    height: auto;

    display: block;

    margin: 0 auto 20px;

    border-radius: 15px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 10px 18px rgba(0,0,0,0.20)
        );
}


.logo-area h1 {

    font-size: 32px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -0.5px;

    color: #071426;

    margin-bottom: 8px;
}


.logo-area p {

    font-size: 14px;

    color: #657083;

    margin: 0;
}


/* ---------- MESSAGE ---------- */

.message {

    padding: 13px 15px;

    border-radius: 12px;

    margin-bottom: 20px;

    font-size: 14px;

    line-height: 1.5;

    text-align: center;

    font-weight: 600;
}


.message.success {

    background: #e9fff1;

    color: #087a38;

    border: 1px solid #b8f0cb;
}


.message.error {

    background: #fff0f0;

    color: #b42318;

    border: 1px solid #ffc7c7;
}


/* ---------- INPUT GROUP ---------- */

.input-group {

    margin-bottom: 17px;
}


.input-group label {

    display: block;

    margin-bottom: 7px;

    font-size: 13px;

    font-weight: 700;

    color: #273449;
}


.input-group label span {

    font-weight: 500;

    color: #8993a3;
}


/* ---------- INPUT ---------- */

.input-group input {

    width: 100%;

    height: 54px;

    border: 1px solid #dce2eb;

    border-radius: 12px;

    outline: none;

    background: #f8fafc;

    padding: 0 16px;

    font-size: 15px;

    color: #172033;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.input-group input::placeholder {

    color: #9aa4b2;
}


.input-group input:hover {

    border-color: #b9c5d6;
}


.input-group input:focus {

    background: #ffffff;

    border-color: #1769ff;

    box-shadow:
        0 0 0 4px rgba(23,105,255,0.10);
}


/* ---------- TERMS ---------- */

.terms {

    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin: 5px 0 22px;

    color: #657083;

    font-size: 12px;

    line-height: 1.5;
}


.terms input {

    width: 16px;

    height: 16px;

    margin-top: 1px;

    accent-color: #1769ff;

    flex-shrink: 0;
}


.terms label {

    cursor: pointer;
}


/* ---------- REGISTER BUTTON ---------- */

.register-btn {

    width: 100%;

    height: 58px;

    border: none;

    border-radius: 13px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    background:
        linear-gradient(
            100deg,
            #0758ff,
            #087eff 55%,
            #00b9ff
        );

    color: #ffffff;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 0.7px;

    box-shadow:
        0 12px 25px rgba(0,102,255,0.28);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}


.register-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 17px 32px rgba(0,102,255,0.35);

    filter: brightness(1.04);
}


.register-btn:active {

    transform: translateY(0);
}


.register-btn .arrow {

    font-size: 22px;

    line-height: 1;

    transition: transform 0.2s ease;
}


.register-btn:hover .arrow {

    transform: translateX(4px);
}


/* ---------- LOGIN SECTION ---------- */

.login-section {

    text-align: center;

    margin-top: 25px;

    padding-top: 22px;

    border-top: 1px solid #e3e7ee;
}


.login-section p {

    margin: 0 0 7px;

    font-size: 13px;

    color: #7b8594;
}


.login-section a {

    color: #0758ff;

    font-size: 14px;

    font-weight: 800;

    text-decoration: none;
}


.login-section a:hover {

    text-decoration: underline;
}


/* ---------- SECURE TEXT ---------- */

.secure-text {

    text-align: center;

    margin-top: 20px;

    font-size: 11px;

    color: #9aa4b2;

    letter-spacing: 0.3px;
}


.secure-text span:first-child {

    color: #12a85a;

    font-size: 10px;
}


.separator {

    margin: 0 7px;

    color: #c5cbd4;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .page-wrapper {

        padding: 25px 14px;

        align-items: center;
    }


    .register-box {

        max-width: 100%;

        padding: 28px 21px;

        border-radius: 22px;
    }


    .company-logo {

        width: 145px;

        margin-bottom: 17px;
    }


    .logo-area h1 {

        font-size: 27px;
    }


    .logo-area p {

        font-size: 13px;
    }


    .input-group input {

        height: 52px;

        font-size: 14px;
    }


    .register-btn {

        height: 56px;

        font-size: 14px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .register-box {

        padding: 24px 17px;
    }


    .logo-area h1 {

        font-size: 24px;
    }


    .company-logo {

        width: 130px;
    }

}