#bm-login {

    min-height:70vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:40px;

}

.bm-login-card {

    width:100%;

    max-width:450px;

    background:#1c1c1c;

    border:1px solid #2a2a2a;

    border-radius:20px;

    padding:40px;

    text-align:center;

}

.bm-login-logo {

    width:120px;

    margin:0 auto 20px auto;

    display:block;

}

.bm-login-card h1 {

    color:white;

    margin-bottom:10px;

    text-transform:uppercase;

}

.bm-login-card p {

    color:#999;

    margin-bottom:30px;

}

#bm-login-form {

    display:flex;

    flex-direction:column;

    gap:15px;

}

#bm-login-form input {

    width:100%;

    padding:14px;

    border-radius:12px;

    border:1px solid #2a2a2a;

    background:#111;

    color:white;

}

#bm-login-form button {

    background:#d4a24c;

    border:none;

    padding:14px;

    border-radius:12px;

    cursor:pointer;

    font-weight:600;

}

#bm-login-error {

    color:#ef4444;

    margin-top:15px;

}