/* Login / About landing page styles */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-header {
    background: #1e293b;
    border-bottom: 1px solid #334155;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-logo {
    font-size: 20px;
    font-weight: 600;
    color: #f8fafc;
    letter-spacing: -0.5px;
}

.landing-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.landing-container {
    display: flex;
    gap: 64px;
    max-width: 960px;
    width: 100%;
    align-items: flex-start;
}

.about-section {
    flex: 1;
    min-width: 0;
}

.about-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.about-content {
    font-size: 16px;
    line-height: 1.7;
    color: #94a3b8;
    white-space: pre-wrap;
}

.login-section {
    width: 360px;
    flex-shrink: 0;
}

.login-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 32px;
}

.login-card h2 {
    font-size: 20px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 24px;
    text-align: center;
}

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 6px;
}

.form-field input {
    width: 100%;
    padding: 10px 12px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    color: #e2e8f0;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
}

.form-field input:focus {
    border-color: #3b82f6;
}

.login-error {
    display: none;
    background: #7f1d1d;
    border: 1px solid #991b1b;
    border-radius: 6px;
    padding: 10px 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #fca5a5;
}

.login-error.visible {
    display: block;
}

.login-btn {
    width: 100%;
    padding: 10px;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
}

.login-btn:hover {
    background: #2563eb;
}

.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.landing-footer {
    text-align: center;
    padding: 16px;
    color: #475569;
    font-size: 12px;
    border-top: 1px solid #1e293b;
}

@media (max-width: 768px) {
    .landing-container {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .login-section {
        width: 100%;
        max-width: 400px;
    }
}
