body {
    background: #0f0f0f;
    color: #eee;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
}

.login-card {
    background: #1a1a1a;
    padding: 35px;
    border-radius: 15px;
    width: 100%;
    max-width: 380px;
    border: 1px solid #292929;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.brand-title {
    font-size: 26px;
    font-weight: 800;
    text-align: center;
}

.form-label {
    color: #ccc;
}

.btn-login {
    padding: 10px;
    background: #17b63a !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: 8px;
}

.broker-btn {
    background: #005BEA !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 10px;
}

a {
    color: #aaa;
    text-decoration: none;
}
a:hover {
    color: #fff;
}