* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Raleway', system-ui, sans-serif;
    background: #080b10;
    color: #e2e8f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.header {
    background: #022f42;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header .center {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.brand-text {
    display: flex;
    flex-direction: column;
}
.brand-name {
    font-family: 'Raleway', system-ui, sans-serif;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #fff;
    line-height: 1.2;
}
.agent-name {
    font-family: 'Raleway', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.agent-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Raleway', system-ui, sans-serif;
    font-size: 400px;
    font-weight: 700;
    opacity: 0.04;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    z-index: 0;
}
.content .inner-container {
    position: relative;
    z-index: 1;
}
input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
    background: #141820;
    border: 1px solid #232a3a;
    border-radius: 8px;
    color: #e2e8f0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Raleway', system-ui, sans-serif;
    margin-bottom: 12px;
    transition: border-color 0.2s ease;
}
input[type="password"]::placeholder {
    color: #64748b;
}
input[type="password"]:focus {
    border-color: #4f9eff;
}
.alert {
    max-width: 400px;
    width: 100%;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-family: inherit;
    margin-bottom: 16px;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-error {
    background: rgba(255,79,107,0.1);
    color: #ff4f6b;
    border: 1px solid rgba(255,79,107,0.25);
}
.alert-info {
    background: rgba(79,158,255,0.1);
    color: #4f9eff;
    border: 1px solid rgba(79,158,255,0.25);
}
button {
    width: 100%;
    background: #4f9eff;
    color: #fff;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Raleway', system-ui, sans-serif;
    transition: background 0.15s ease;
    margin-top: 4px;
}
button:hover {
    background: #3b8de8;
}
button:active {
    background: #2d7dd2;
}
.inner-container {
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}
.inner-container img {
    display: none;
}
h1 {
    font-size: 20px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 24px;
}
p {
    font-size: 14px;
    color: #64748b;
}
a {
    color: #4f9eff;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}
a:hover {
    color: #3b8de8;
    text-decoration: underline;
}
form {
    margin-bottom: 16px;
}
.card {
    background: #0e1117;
    border: 1px solid #232a3a;
    border-radius: 12px;
    padding: 32px 28px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 14px;
}
.card ul {
    text-align: left;
    margin: 12px 0;
    padding-left: 20px;
    list-style: disc;
}
.card li {
    padding: 3px 0;
    font-size: 13px;
    color: #94a3b8;
}
.card li strong {
    color: #e2e8f0;
    font-weight: 600;
}
code {
    display: block;
    background: #0f111a;
    color: #a8b4d0;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    line-height: 1.8;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #232a3a;
    max-width: 600px;
    width: 100%;
    margin: 16px auto 0;
    text-align: left;
}
.log-footer {
    border-top: 1px solid #232a3a;
    padding-top: 10px;
    margin-top: 10px;
}
