/* ===========================
   RESET
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===========================
   PAGE
=========================== */

body {
    background: #ffffff;
    color: #111111;
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, sans-serif;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===========================
   NAVBAR
=========================== */

.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 28px 48px;
    position: relative;
    z-index: 1000;
}

.logo img{
    height: 42px;
    width: auto;
    display: block;
}
.nav-link {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    font-weight: 500;
}

.nav-link:hover {
    opacity: .7;
}

/* ===========================
   MAIN
=========================== */

.login-container {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    transform: translateY(-35px);
}

.login-content {
    width: 100%;
    max-width: 420px;

    text-align: center;
}

/* ===========================
   TYPOGRAPHY
=========================== */

.login-content h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;

    margin-bottom: 18px;
}

.subtitle {
    font-size: 1.05rem;
    color: #666;

    line-height: 1.6;

    margin-bottom: 42px;
}

/* ===========================
   GOOGLE BUTTON
=========================== */

.google-btn {

    width: 300px;
    height: 56px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    background: white;

    border: 1px solid #d4d4d4;
    border-radius: 999px;

    text-decoration: none;

    color: #3c4043;
    font-size: 16px;
    font-weight: 500;

    transition: .2s ease;
}

.google-btn:hover {

    background: #f8f9fa;

    border-color: #c8c8c8;

    box-shadow: 0 3px 8px rgba(0,0,0,.08);

    transform: translateY(-1px);

}

.google-btn img {

    width: 36x;
    height: 36px;

    object-fit: contain;
    flex-shrink: 0;

}

/* ===========================
   FOOTER
=========================== */

.footer {

    text-align: center;

    padding: 28px;

    font-size: .95rem;

    color: #666;

}