.custom-login-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #242424;
    border-radius: 10px;
    background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
}

.custom-login-form label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: bold;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    unicode-bidi: isolate;
    background-color: rgba(0,0,0,0.00);
    border: 0 solid black;
    box-sizing: border-box;
    display: inline;
    font: 14px -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    list-style: none;
    margin: 0px;
    padding: 0px;
    position: relative;
    text-align: start;
    text-decoration: none;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 24px;
    font-family: DMSans-Regular;
    font-size: 16px;
    margin-bottom: 5px;
}

.custom-login-form input[type="text"],
.custom-login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: black;
}

.custom-login-form input[type="submit"] {
    width: 100%;
    background: #007cba;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.custom-login-form input[type="submit"]:hover {
    background: #005a87;
}

.login-error {
    color: red;
    text-align: center;
}
