@import url("fonts.css");

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

body {
    background-color: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 340px;
    padding: 2rem;
}

.login-container h1 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.subtitle {
    color: #86868b;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 32px;
}

button {
    width: 100%;
    padding: 13px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.15s;
}

button:hover { opacity: 0.85; }

#apple-login {
    background: #fff;
    color: #000;
    margin-bottom: 12px;
}

#guest-login {
    background: #1c1c1e;
    color: #fff;
    border: 0.5px solid #3a3a3c;
}

.apple-logo {
    width: 44px;
    height: 44px;
    fill: #fff;
    margin-bottom: 24px;
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 20px 0;
}

.divider-line {
    flex: 1;
    height: 0.5px;
    background: #3a3a3c;
}

.divider-text {
    color: #86868b;
    font-size: 12px;
}

.footer {
    margin-top: 32px;
    color: #6e6e73;
    font-size: 12px;
    text-align: center;
    line-height: 1.8;
}

.footer a {
    color: #0071e3;
    text-decoration: none;
}
