* {
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;
    background:
        linear-gradient(
            90deg,
            rgba(3, 18, 35, 0.96) 0%,
            rgba(3, 18, 35, 0.82) 34%,
            rgba(3, 18, 35, 0.35) 66%,
            rgba(3, 18, 35, 0.10) 100%
        ),
        url("assets/images/signup-bg.webp") center center / cover no-repeat fixed;
    overflow-x: hidden;
    color: #ffffff;
}

.signup-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 36px 0 36px 7%;
}

.signup-card {
    width: min(460px, calc(100vw - 32px));
    padding: 32px 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 22px;
    background: rgba(5, 29, 52, 0.84);
    color: #ffffff;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.logo-circle {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: 0 0 17px 0;
    border-radius: 50%;
    background: rgba(5, 29, 52, 0.72);
    border: 2px solid rgba(43, 212, 227, 0.85);
    box-shadow:
        0 0 0 4px rgba(43, 212, 227, 0.12),
        0 0 28px rgba(43, 212, 227, 0.45);
    overflow: hidden;
}

.logo-circle img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
}

h1 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.12;
}

.subtitle {
    margin: 9px 0 22px;
    color: #f3e7c5;
    font-size: 14px;
    line-height: 1.45;
}

label {
    display: block;
    margin: 13px 0 6px;
    color: #d8edf3;
    font-size: 13px;
    font-weight: 800;
}

input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 15px;
    outline: none;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

input:focus {
    border-color: #f4b63c;
    box-shadow: 0 0 0 3px rgba(43, 212, 227, 0.18);
}

button {
    width: 100%;
    height: 47px;
    margin-top: 20px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #f4b63c, #a97820);
    color: #00483d;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(43, 212, 227, 0.22);
}

button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.error,
.success {
    margin: 14px 0 4px;
    padding: 11px 12px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
}

.error {
    border: 1px solid rgba(255, 160, 160, 0.35);
    background: rgba(239, 68, 68, 0.20);
    color: #ffd7d7;
}

.success {
    border: 1px solid rgba(111, 240, 208, 0.35);
    background: rgba(22, 163, 74, 0.20);
    color: #d9ffe9;
}

.links {
    margin-top: 18px;
    text-align: center;
    color: #c8dce4;
    font-size: 13px;
    line-height: 1.8;
}

.links a {
    color: #e6c66b;
    text-decoration: none;
    font-weight: 900;
}

.links a:hover {
    text-decoration: underline;
}

.small-note {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #f3e7c5;
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 800px) {
    body {
        background:
            linear-gradient(
                180deg,
                rgba(3, 18, 35, 0.88),
                rgba(3, 18, 35, 0.76)
            ),
            url("assets/images/signup-bg_mobile.webp") center center / cover no-repeat fixed;
    }

    .signup-page {
        justify-content: center;
        padding: 24px 16px;
    }

    .signup-card {
        padding: 30px 24px 26px;
    }

    .logo-circle {
        margin-left: auto;
        margin-right: auto;
    }

    h1,
    .subtitle {
        text-align: center;
    }
}
body{background:linear-gradient(90deg,rgba(0,55,46,.96) 0%,rgba(0,55,46,.82) 34%,rgba(0,55,46,.28) 62%,rgba(0,55,46,.08) 100%),url("../images/auth-bg.jpg") center/cover fixed no-repeat!important}.login-page,.signup-page{justify-content:flex-start!important;align-items:center!important;padding-left:clamp(24px,7vw,120px)!important}.login-card,.signup-card{margin:0!important;max-width:430px!important;background:rgba(0,54,45,.92)!important;border-color:rgba(244,182,60,.4)!important}.login-card h1,.signup-card h1,.login-card .subtitle,.signup-card .subtitle{text-align:left!important}.logo-circle{margin-left:0!important;margin-right:auto!important}@media(max-width:680px){.login-page,.signup-page{justify-content:center!important;padding:22px!important}.login-card,.signup-card{max-width:100%!important}}
