@import url('/public/assets/css/main.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "Segoe UI", sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.page-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing {
    width: 480px;
    max-width: 100%;
    text-align: center;
    padding: 40px 36px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    color: #111;
}

.landing .logo {
    width: 96px;
    margin-bottom: 14px;
}

.landing h1 {
    font-size: 36px;
    margin-bottom: 10px;
    letter-spacing: -.5px;
    color: #111;
}

.landing p {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 26px;
    line-height: 1.5;
}

.landing .cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.landing .cta a {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform .1s, background .15s, color .15s, border-color .15s;
}

.landing .cta .btn-primary {
    background: var(--btn-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(21, 128, 61, 0.25);
}

.landing .cta .btn-primary:hover {
    background: var(--btn-primary-hover);
    transform: translateY(-1px);
}

.landing .cta .btn-secondary {
    background: transparent;
    color: var(--btn-primary);
    border: 2px solid var(--btn-primary);
}

.landing .cta .btn-secondary:hover {
    background: rgba(21, 128, 61, 0.08);
    transform: translateY(-1px);
}

/* === Footer === */
.site-footer {
    width: 100%;
    margin-top: 24px;
    padding: 16px 24px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.site-footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
}

.site-footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: .9;
    width: max-content;
}

.site-footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.site-footer-version {
    font-size: 13px;
    opacity: .85;
    text-align: center;
}

.site-footer-copy {
    font-size: 12px;
    opacity: .7;
    text-align: right;
}

@media (max-width: 600px) {
    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer-links {
        align-items: center;
    }

    .site-footer-copy {
        text-align: center;
    }
}
