
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, Arial, sans-serif;
    background:
        radial-gradient(circle at 20% 0%, rgba(0,255,153,.10), transparent 35%),
        radial-gradient(circle at 90% 100%, rgba(214,175,55,.08), transparent 30%),
        #070b0a;
    color: #fff;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.card {
    width: 100%;
    max-width: 520px;
    padding: 38px;
    border-radius: 28px;
    background: rgba(12,18,16,.92);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 25px 80px rgba(0,0,0,.45);
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
}

.logo span {
    color: #fff;
}

.logo strong {
    color: #1cff91;
}

.badge {
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #d6af37;
    border: 1px solid rgba(214,175,55,.35);
    background: rgba(214,175,55,.08);
}

.eyebrow {
    color: #1cff91;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

h1 {
    margin: 8px 0 12px;
    font-size: 38px;
    line-height: 1.08;
}

.subtitle {
    color: #9da8a3;
    line-height: 1.65;
    margin-bottom: 30px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #d5dad7;
}

input {
    width: 100%;
    min-height: 58px;
    border-radius: 16px;
    border: 1px solid #26332e;
    background: #0a100e;
    color: white;
    padding: 0 18px;
    font-size: 16px;
    outline: none;
    transition: .2s ease;
}

input:focus {
    border-color: #1cff91;
    box-shadow: 0 0 0 4px rgba(28,255,145,.08);
}

button {
    width: 100%;
    margin-top: 16px;
    min-height: 58px;
    border: 0;
    border-radius: 16px;
    font-weight: 800;
    font-size: 15px;
    background: linear-gradient(135deg, #1cff91, #0bcf74);
    color: #021008;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .15s ease, opacity .15s ease;
}

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

button:disabled {
    opacity: .7;
    cursor: not-allowed;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0,0,0,.25);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hidden {
    display: none !important;
}

.status {
    margin-top: 18px;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
}

.status.success {
    background: rgba(28,255,145,.08);
    border: 1px solid rgba(28,255,145,.22);
    color: #baffd7;
}

.status.error {
    background: rgba(255,74,74,.08);
    border: 1px solid rgba(255,74,74,.22);
    color: #ffbaba;
}

.info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.info > div {
    border: 1px solid #1c2723;
    background: #0a100e;
    border-radius: 16px;
    padding: 15px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.info p {
    margin: 0;
    color: #8f9a95;
    font-size: 12px;
    line-height: 1.45;
}

.info strong {
    color: white;
    font-size: 13px;
}

.icon {
    color: #1cff91;
}

.footer {
    text-align: center;
    margin: 24px 0 0;
    color: #626c68;
    font-size: 11px;
}

@media (max-width: 600px) {
    .page {
        padding: 14px;
        align-items: flex-start;
    }

    .card {
        margin-top: 24px;
        padding: 26px 20px;
        border-radius: 22px;
    }

    h1 {
        font-size: 31px;
    }

    .info {
        grid-template-columns: 1fr;
    }
}
