﻿/* =========================================================
   INDEX PAGE
========================================================= */

.index-page {
    width: 100%;
    max-width: 560px;
    min-height: calc(100vh - 140px);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 12px;
}

/* =========================================================
   CARD
========================================================= */

.index-card {
    background: linear-gradient( 180deg, var(--panel), var(--panel-2) );
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(0,0,0,.22), 0 1px 0 rgba(255,255,255,.03) inset;
}

/* =========================================================
   HEADER
========================================================= */

.index-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
}

/* =========================================================
   LOGO
========================================================= */

.index-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .index-logo img {
        width: 54px;
        height: 54px;
        object-fit: contain;
    }

/* =========================================================
   TITLE
========================================================= */

.index-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.index-subtitle {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 15px;
}

/* =========================================================
   INFO
========================================================= */

.index-info {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 32px;
}

    .index-info p {
        margin: 0;
    }

/* =========================================================
   ACTIONS
========================================================= */

.index-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .index-actions form {
        margin: 0;
    }

/* =========================================================
   BUTTONS
========================================================= */

.index-btn {
    width: 100%;
    height: 48px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--panel);
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, transform .15s ease;
    appearance: none;
    outline: none;
}

    .index-btn:hover {
        background: var(--hover);
        border-color: var(--accent);
        transform: translateY(-1px);
    }

    .index-btn.primary {
        background: var(--accent);
        border-color: transparent;
        color: white;
    }

/* =========================================================
   FOOTER
========================================================= */

.index-footer {
    margin-top: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
    opacity: .85;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {


}
