.login-screen
{
    width: 100vw;
    height: 100vh;

    background: #0b1120;

    overflow: hidden;
}

.login-overlay
{
    position: fixed;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(0,0,0,0.45);

    z-index: 99999;
}

.login-dialog
{
    width: 360px;

    background: #111827;

    border:
        1px solid #29303d;

    border-radius: 10px;

    padding: 20px;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.45);
}

.login-title
{
    color: white;

    font-size: 20px;

    font-weight: 600;

    margin-bottom: 20px;
}

.login-dialog .form-group
{
    margin-bottom: 14px;
}

.login-dialog label
{
    display: block;

    color: white;

    font-size: 13px;

    margin-bottom: 6px;
}

.login-dialog input
{
    width: 100%;

    box-sizing: border-box;

    background: #0f172a;

    border:
        1px solid rgba(255,255,255,0.15);

    border-radius: 6px;

    padding: 10px 12px;

    color: white;

    outline: none;
}

.login-dialog input:focus
{
    border-color: teal;
}

.login-dialog .form-actions
{
    display: flex;

    justify-content: flex-end;

    margin-top: 22px;
}

.form-error
{
    color: #ff4d4f;

    font-size: 13px;

    margin-top: 10px;
}