* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
    color: #0d1b2a;
    background: #f5f7fb;
}

.container {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px 48px;
}

.login-grid {
    display: grid;
    gap: 28px;
    align-content: center;
    justify-items: center;
}

.login-card {
    width: min(420px, 100%);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(13, 27, 42, 0.08);
    padding: 32px 28px;
    text-align: center;
}

.login-card h1 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
}

.login-subtitle {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 15px;
}

.login-logo {
    width: min(420px, 100%);
    text-align: center;
    font-size: clamp(2.5rem, 9vw, 120px);
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 1.05;
    font-family: "Brush Script MT", cursive;
    color: #356ab0;
}

.login-logo p {
    margin: 0;
}

/* Theme tokens for consistent color usage. */
:root {
    --primary: #2f5bff;
    --primary-dark: #1c3fcc;
    --secondary: #eef2ff;
    --border: #d9e2f0;
    --muted: #5e6a79;
    --success: #1f9d55;
    --warning: #ff8800;
    --danger: #dc2626;
}

header.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

header.top-bar-login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.insite-logo {
    font-weight: 700;
    letter-spacing: 0.3px;
}

.main-button,
.secondary-button,
.nav-button {
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.main-button {
    background: var(--primary);
    color: #ffffff;
}


.row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wrap {
    flex-wrap: wrap;
}

.g_id_signin {
    display: inline-flex;
    justify-content: center;
    width: 100%;
}