@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: white;
    background: black;
}

/* Light mode support */
[data-theme="light"] html,
[data-theme="light"] body {
    color: #1f2937;
    background: linear-gradient(135deg, #e8f0f7 0%, #f0f5fa 100%);
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.login-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.login-card {
    background-color: rgba(31, 41, 55, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid #4b5563;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 2.5rem;
    max-width: 26rem;
    width: 100%;
}

[data-theme="light"] .login-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: #d1d5db;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] label {
    color: #1f2937 !important;
}

[data-theme="light"] input {
    background-color: #ffffff;
    color: #1f2937;
    border-color: #d1d5db;
}

[data-theme="light"] button {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

[data-theme="light"] button:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}
