@import '/css/common.css';

body {
    align-items: center;
    justify-content: center;
    background-color: var(--workspace-bg);
}

#login-form {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: var(--header-bg);
    padding: 24px 32px 32px 32px;
    color: white;

    #login-form-title {
        font-size: 24px;
    }

    .form-fields {
        display: flex;
        flex-direction: column;
        gap: 16px;

        .form-field {
            display: flex;
            flex-direction: column;
            gap: 6px;

            .form-field-label {
                font-size: 13px;
                font-weight: 500;
            }
        }
    }

    .button {
        background-color: var(--theme-blue-dark);
        border: 1px solid var(--theme-blue-medium);
    }
}
