/* Landing page styles - requires base.css to be loaded first */

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    background: var(--main-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    background: var(--card-bg);
    padding: 80px 60px;
    max-width: 480px;
    width: 90%;
}

.container h1 {
    font-size: 23px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.container h1 .logo {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

.login-btn {
    background: var(--github-bg);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.15s ease;
}

.login-btn:hover {
    background: var(--github-bg-hover);
}

.login-btn-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}
