/* ===== INDEX PAGE ONLY ===== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: "Segoe UI", Helvetica, Arial, sans-serif;
    background-image: url("/static/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Top bar */
.top-bar {
    height: 72px;
    background: white;
    display: flex;
    align-items: center;
    padding-left: 16px;
    padding-right: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.top-left {
    display: flex;
    align-items: center;
}

.top-logo {
    height: 44px;
    cursor: pointer;
}

/* Center content */
.landing-wrapper {
    height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-card {
    background: white;
    width: 520px;
    padding: 72px 64px;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.landing-logo {
    width: 320px;
    margin-bottom: 56px;
}

.landing-btn {
    display: inline-block;
    background-color: #19577a;
    color: white;
    text-decoration: none;
    padding: 22px 64px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 999px;
}

.landing-btn:hover {
    opacity: 0.9;
}
