/* Aidventures — Login page (standalone, no style.css dependency) */

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

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background: #0d1117;
    color: #e6edf3;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f78166;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.login-subtitle {
    color: #8b949e;
    font-size: 0.95rem;
    margin-bottom: 32px;
}

#login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
}

#login-form input {
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #30363d;
    border-radius: 8px;
    background: #161b22;
    color: #e6edf3;
    outline: none;
    transition: border-color 0.15s;
}

#login-form input:focus {
    border-color: #f78166;
}

#login-form button {
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: #f78166;
    color: #0d1117;
    cursor: pointer;
    transition: background 0.15s;
}

#login-form button:hover {
    background: #ffa28b;
}

#login-form button:active {
    transform: scale(0.98);
}

.login-error {
    color: #f85149;
    font-size: 0.85rem;
    min-height: 1.2em;
    text-align: center;
}
